Skip to content

Commit 562711f

Browse files
committed
Syntax test workflow
1 parent 4462d17 commit 562711f

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

.github/workflows/syntax.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
paths:
11+
- '**.sublime-syntax'
12+
- '**/syntax_test*'
13+
- '**.tmPreferences'
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

Comments
 (0)