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