Merge remote-tracking branch 'upstream/main' into ci/pkg-rename #51
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: | |
| workflow_dispatch: | |
| inputs: | |
| logLevel: | |
| description: 'Log level' | |
| required: true | |
| default: 'warning' | |
| type: choice | |
| options: | |
| - info | |
| - warning | |
| - debug | |
| push: | |
| paths: | |
| - '.github/workflows/*' | |
| - '**.sublime-syntax' | |
| - '**/syntax_test*' | |
| - '**.tmPreferences' | |
| pull_request: | |
| paths: | |
| - '.github/workflows/*' | |
| - '**.sublime-syntax' | |
| - '**/syntax_test*' | |
| - '**.tmPreferences' | |
| jobs: | |
| syntax_tests: | |
| name: Syntax Tests (${{ matrix.build }}) | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| strategy: | |
| matrix: | |
| include: | |
| - build: 'latest' | |
| - build: 'stable' | |
| - build: 4077 # Supported in Package Control and contains test binary | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: SublimeText/syntax-test-action@v2 | |
| with: | |
| build: ${{ matrix.build }} | |
| package_name: 'Spreadsheet Formula' | |
| dummy_syntaxes: source.regexp.basic |