Merge pull request #51 from michaelblyons/google/query-completions #148
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: | |
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: 'Excel formula' | |
dummy_syntaxes: source.regexp.basic |