Skip to content

Commit

Permalink
Minor changes in GitHub CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
gmlarumbe committed Aug 9, 2024
1 parent 290a5e5 commit 260cd0b
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,24 @@ on:
jobs:
test:
runs-on: ${{ matrix.os }}

strategy:
fail-fast: true
matrix:
os: [ubuntu-latest, macos-latest] # windows-latest still not supported by tree-sitter/setup-action@v1

steps:
- uses: actions/checkout@v4
- uses: tree-sitter/setup-action@v1
- run: tree-sitter generate
- run: tree-sitter test
- name: Clone tree-sitter-systemverilog
uses: actions/checkout@v4

- name: Setup tree-sitter
uses: tree-sitter/setup-action@v1

- name: Generate parser
run: |
tree-sitter generate
- name: Run tests
run: |
tree-sitter test

0 comments on commit 260cd0b

Please sign in to comment.