Adjust litcoffee code fence scopes #39
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: CI Syntax Tests | |
| on: | |
| push: | |
| branches: | |
| - 'master' | |
| tags-ignore: | |
| - '**' | |
| paths: | |
| - '.github/workflows/ci-syntax-tests.yml' | |
| - '**.sublime-syntax' | |
| - '**/syntax_test_*' | |
| - '**.tmPreferences' | |
| pull_request: | |
| paths: | |
| - '.github/workflows/ci-syntax-tests.yml' | |
| - '**.sublime-syntax' | |
| - '**/syntax_test_*' | |
| - '**.tmPreferences' | |
| workflow_dispatch: | |
| jobs: | |
| syntax_tests: | |
| name: Sublime Text ${{ matrix.build }} | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 # default is 6 hours! | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| # Stable ST4 builds | |
| - build: 4143 | |
| default_packages: v4143 | |
| - build: 4152 | |
| default_packages: v4152 | |
| - build: 4169 | |
| default_packages: v4169 | |
| - build: 4180 | |
| default_packages: v4180 | |
| - build: 4200 | |
| default_packages: v4200 | |
| # Latest dev build | |
| - build: latest | |
| default_packages: master | |
| steps: | |
| - name: Checkout Default Packages | |
| uses: actions/checkout@v6 | |
| with: | |
| repository: sublimehq/Packages | |
| ref: ${{ matrix.default_packages }} | |
| path: st_syntax_tests/Data/Packages | |
| - name: Delete default package tests | |
| run: | | |
| find st_syntax_tests/Data/Packages/*/ -type f -name 'syntax_test*' -exec rm -v '{}' \; | |
| - name: Checkout CoffeeScript | |
| uses: actions/checkout@v6 | |
| with: | |
| path: st_syntax_tests/Data/Packages/CoffeeScript | |
| - name: Run Syntax Tests for Sublime Text ${{ matrix.build }} | |
| run: | | |
| if [[ "${{ matrix.build }}" == "latest" ]]; then | |
| wget -O st_syntax_tests.tar.xz https://download.sublimetext.com/latest/dev/linux/x64/syntax_tests | |
| else | |
| wget -O st_syntax_tests.tar.xz https://download.sublimetext.com/st_syntax_tests_build_${{ matrix.build }}_x64.tar.xz | |
| fi | |
| tar xf st_syntax_tests.tar.xz | |
| cd st_syntax_tests | |
| ./syntax_tests |