-
Notifications
You must be signed in to change notification settings - Fork 81
44 lines (41 loc) · 929 Bytes
/
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
42
43
44
name: Syntax Tests
on:
push:
branches:
- '**'
tags-ignore:
- '**'
paths:
- '.github/workflows/syntax.yml'
- '**.sublime-syntax'
- '**/syntax_test*'
- '**.tmPreferences'
pull_request:
paths:
- '.github/workflows/syntax.yml'
- '**.sublime-syntax'
- '**/syntax_test*'
- '**.tmPreferences'
types:
- "opened"
- "reopened"
- "synchronize"
workflow_dispatch:
jobs:
main:
name: Syntax Tests (${{ matrix.build }})
strategy:
matrix:
include:
- build: 4107
packages: v4107
- build: latest
packages: master
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: SublimeText/syntax-test-action@v2
with:
build: ${{ matrix.build }}
default_packages: ${{ matrix.packages }}
package_name: 'PowerShell'