File tree Expand file tree Collapse file tree 2 files changed +31
-49
lines changed Expand file tree Collapse file tree 2 files changed +31
-49
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ name : Syntax Tests
2
+
3
+ on :
4
+ push :
5
+ paths :
6
+ - ' **.sublime-syntax'
7
+ - ' **/syntax_test*'
8
+ - ' **.tmPreferences'
9
+ - .github/workflows/syntax_tests.yaml
10
+ pull_request :
11
+ paths :
12
+ - ' **.sublime-syntax'
13
+ - ' **/syntax_test*'
14
+ - ' **.tmPreferences'
15
+ - .github/workflows/syntax_tests.yaml
16
+
17
+ jobs :
18
+ syntax_tests :
19
+ name : Syntax Tests (${{ matrix.build }})
20
+ runs-on : ubuntu-latest
21
+ timeout-minutes : 15 # default is 6 hours!
22
+ strategy :
23
+ matrix :
24
+ include :
25
+ - build : latest # Latest dev build
26
+ - build : 4169 # Oldest stable version we intent to support
27
+ steps :
28
+ - uses : actions/checkout@v3
29
+ - uses : SublimeText/syntax-test-action@v2
30
+ with :
31
+ build : ${{ matrix.build }}
You can’t perform that action at this time.
0 commit comments