Skip to content

Commit

Permalink
Merge pull request #5 from calmyournerves/github-action-workflow
Browse files Browse the repository at this point in the history
Add GitHub action workflow
  • Loading branch information
kolen authored Jul 7, 2024
2 parents 5557841 + 9556076 commit e2468e2
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: CI

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest, windows-latest, macos-14]

steps:
- uses: actions/checkout@v4
- name: Set up tree-sitter
uses: tree-sitter/setup-action/cli@v1
- name: Run tests
uses: tree-sitter/parser-test-action@v2

0 comments on commit e2468e2

Please sign in to comment.