Pin early dev CI packages #29
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
name: Syntax Tests | |
# https://github.com/sublimetext/syntax-test-action | |
on: | |
push: | |
paths: | |
- '.github/workflows/*' | |
- '**.sublime-syntax' | |
- '**/syntax_test_*' | |
- '**.tmPreferences' | |
pull_request: | |
paths: | |
- '.github/workflows/*' | |
- '**.sublime-syntax' | |
- '**/syntax_test_*' | |
- '**.tmPreferences' | |
jobs: | |
main: | |
name: Syntax Tests (${{ matrix.build }}) | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
strategy: | |
# fail-fast: false | |
matrix: | |
include: | |
- build: 'latest' | |
packages: master | |
- build: 'stable' | |
packages: v4193 # revert to 'binary' when Bash rewrite drops in stable | |
- build: 4185 # Required for symbol transformation tests | |
packages: v4193 # Bash rewrite | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: SublimeText/syntax-test-action@v2 | |
with: | |
build: ${{ matrix.build }} | |
default_packages: ${{ matrix.packages }} | |
package_name: 'SSH Config' |