Disable TRUE()
and FALSE()
function completions in favor of those…
#133
Workflow file for this run
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: 3211 # libgl1-mesa-glx is not available on ubuntu-latest SublimeText/syntax-action#17 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: SublimeText/syntax-test-action@v2 | |
with: | |
build: ${{ matrix.build }} | |
package_name: 'Excel formula' | |
dummy_syntaxes: source.regexp.basic |