-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (31 loc) · 789 Bytes
/
Copy pathst-tests.yaml
File metadata and controls
33 lines (31 loc) · 789 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: Syntax Tests
on:
push:
paths:
- '.github/workflows/st-tests.yaml'
- '**.sublime-syntax'
- '**/syntax_test*'
- '**.tmPreferences'
pull_request:
paths:
- '.github/workflows/st-tests.yaml'
- '**.sublime-syntax'
- '**/syntax_test*'
- '**.tmPreferences'
jobs:
# https://github.com/marketplace/actions/sublime-text-syntax-tests
syntax_tests:
name: Syntax Tests (${{ matrix.build }})
runs-on: ubuntu-latest
timeout-minutes: 15 # default is 6 hours!
strategy:
matrix:
include:
- build: latest
- build: 4077
- build: 3210
steps:
- uses: actions/checkout@v3
- uses: SublimeText/syntax-test-action@v2
with:
build: ${{ matrix.build }}