Skip to content

Commit 24a0b8f

Browse files
committed
Use SublimeText/syntax-test-action for CI
1 parent c1bcc4f commit 24a0b8f

File tree

2 files changed

+31
-49
lines changed

2 files changed

+31
-49
lines changed

.github/workflows/ci.yaml

Lines changed: 0 additions & 49 deletions
This file was deleted.

.github/workflows/syntax_tests.yaml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Syntax Tests
2+
3+
on:
4+
push:
5+
paths:
6+
- '**.sublime-syntax'
7+
- '**/syntax_test*'
8+
- '**.tmPreferences'
9+
- .github/workflows/syntax_tests.yaml
10+
pull_request:
11+
paths:
12+
- '**.sublime-syntax'
13+
- '**/syntax_test*'
14+
- '**.tmPreferences'
15+
- .github/workflows/syntax_tests.yaml
16+
17+
jobs:
18+
syntax_tests:
19+
name: Syntax Tests (${{ matrix.build }})
20+
runs-on: ubuntu-latest
21+
timeout-minutes: 15 # default is 6 hours!
22+
strategy:
23+
matrix:
24+
include:
25+
- build: latest # Latest dev build
26+
- build: 4169 # Oldest stable version we intent to support
27+
steps:
28+
- uses: actions/checkout@v3
29+
- uses: SublimeText/syntax-test-action@v2
30+
with:
31+
build: ${{ matrix.build }}

0 commit comments

Comments
 (0)