Skip to content

Commit 5ab3a2a

Browse files
committed
Run syntax tests on push
Or try to, anyway
1 parent 3a62e5f commit 5ab3a2a

1 file changed

Lines changed: 33 additions & 0 deletions

File tree

.github/workflows/syntax.yml

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

Comments
 (0)