Merge pull request #16 from michaelblyons/ci/oldest-version #6
This file contains hidden or 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: binary | |
| # We claim support for 3092+, but binary tests do not exist | |
| # until 3154, and Ubuntu is missing dependencies until 3181 | |
| - build: 3181 | |
| packages: binary | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: SublimeText/syntax-test-action@v2 | |
| with: | |
| build: ${{ matrix.build }} | |
| package_name: 'Hosts' |