-
Notifications
You must be signed in to change notification settings - Fork 1
41 lines (39 loc) · 1.04 KB
/
syntax.yml
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
34
35
36
37
38
39
40
41
name: Syntax Tests
on:
push:
paths:
- '.github/workflows/syntax.yml'
- '**.sublime-syntax'
- '**/syntax_test*'
- '**.tmPreferences'
pull_request:
paths:
- '.github/workflows/syntax.yml'
- '**.sublime-syntax'
- '**/syntax_test*'
- '**.tmPreferences'
jobs:
main:
name: Syntax Tests (${{ matrix.build }})
strategy:
matrix:
include:
- build: 4169
packages: v4169
- build: 4175
packages: master
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Checkout PowerShell package (dependency)
uses: actions/checkout@v3
with:
repository: SublimeText/PowerShell
ref: master #version/st/4.0.0-alpha.01
path: third-party/PowerShell
- uses: SublimeText/syntax-test-action@v2
with:
build: ${{ matrix.build }}
default_packages: ${{ matrix.packages }}
package_root: third-party
additional_packages: third-party/PowerShell