-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use SublimeText/syntax-test-action for CI
- Loading branch information
1 parent
c1bcc4f
commit 24a0b8f
Showing
2 changed files
with
31 additions
and
49 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: Syntax Tests | ||
|
||
on: | ||
push: | ||
paths: | ||
- '**.sublime-syntax' | ||
- '**/syntax_test*' | ||
- '**.tmPreferences' | ||
- .github/workflows/syntax_tests.yaml | ||
pull_request: | ||
paths: | ||
- '**.sublime-syntax' | ||
- '**/syntax_test*' | ||
- '**.tmPreferences' | ||
- .github/workflows/syntax_tests.yaml | ||
|
||
jobs: | ||
syntax_tests: | ||
name: Syntax Tests (${{ matrix.build }}) | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 15 # default is 6 hours! | ||
strategy: | ||
matrix: | ||
include: | ||
- build: latest # Latest dev build | ||
- build: 4169 # Oldest stable version we intent to support | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: SublimeText/syntax-test-action@v2 | ||
with: | ||
build: ${{ matrix.build }} |