We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a62e5f commit 5ab3a2aCopy full SHA for 5ab3a2a
1 file changed
.github/workflows/syntax.yml
@@ -0,0 +1,33 @@
1
+name: Syntax Tests
2
+
3
+on:
4
+ push:
5
+ paths:
6
+ - '.github/workflows/syntax.yml'
7
+ - '**.sublime-syntax'
8
+ - '**/syntax_test*'
9
+ - '**.tmPreferences'
10
+ pull_request:
11
12
13
14
15
16
17
+jobs:
18
+ main:
19
+ name: Syntax Tests (${{ matrix.build }})
20
+ strategy:
21
+ matrix:
22
+ include:
23
+ - build: 3211
24
+ packages: st3
25
+ - build: 4073
26
+ packages: master
27
+ runs-on: ubuntu-latest
28
+ steps:
29
+ - uses: actions/checkout@v2
30
+ - uses: SublimeText/syntax-test-action@v1
31
+ with:
32
+ build: ${{ matrix.build }}
33
+ default_packages: ${{ matrix.packages }}
0 commit comments