File tree Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : CI Syntax Tests
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - ' master'
7
+ paths :
8
+ - ' .github/workflows/ci-syntax-tests.yml'
9
+ - ' **.sublime-syntax'
10
+ - ' **/syntax_test_*'
11
+ - ' **.tmPreferences'
12
+ pull_request :
13
+ branches :
14
+ - ' **'
15
+ paths :
16
+ - ' .github/workflows/ci-syntax-tests.yml'
17
+ - ' **.sublime-syntax'
18
+ - ' **/syntax_test_*'
19
+ - ' **.tmPreferences'
20
+ workflow_dispatch :
21
+
22
+ jobs :
23
+ syntax_tests :
24
+ name : Sublime Text ${{ matrix.build }}
25
+ strategy :
26
+ matrix :
27
+ include :
28
+ - build : 4107
29
+ packages : a147e3eb6210de480d0d9a6bd6bf54931a8ba7e9
30
+ - build : latest
31
+ packages : master
32
+ runs-on : ubuntu-latest
33
+ steps :
34
+ - uses : actions/checkout@v2
35
+ - uses : SublimeText/syntax-test-action@v2
36
+ with :
37
+ build : ${{ matrix.build }}
38
+ default_packages : ${{ matrix.packages }}
You can’t perform that action at this time.
0 commit comments