Skip to content

Commit

Permalink
Run example tests in parallel
Browse files Browse the repository at this point in the history
  • Loading branch information
314eter committed Sep 14, 2024
1 parent 1a53040 commit 3ab8c29
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,21 @@ jobs:
test-python: true
test-go: true
test-swift: ${{runner.os == 'macOS'}}
parse-examples:
name: Parse examples
runs-on: ${{matrix.os}}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: true
- name: Set up tree-sitter
uses: tree-sitter/setup-action/cli@v1
- name: Parse examples
id: test
uses: tree-sitter/parse-action@v4
with:
files-list: test/files.txt
Expand Down

0 comments on commit 3ab8c29

Please sign in to comment.