File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed
swift/actions/run-ql-tests Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change 72
72
qltests-macos :
73
73
needs : build-macos
74
74
runs-on : macos-12-xl
75
+ strategy :
76
+ fail-fast : false
77
+ matrix :
78
+ slice : ["1/2", "2/2"]
75
79
steps :
76
80
- uses : actions/checkout@v3
77
81
- uses : ./swift/actions/run-ql-tests
82
+ with :
83
+ flags : --slice ${{ matrix.slice }}
78
84
integration-tests-linux :
79
85
needs : build-linux
80
86
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 1
1
name : Build Swift CodeQL pack
2
2
description : Builds the Swift CodeQL pack
3
+ inputs :
4
+ flags :
5
+ description : " Additional `codeql test run` flags"
6
+ required : false
7
+ default : " "
3
8
runs :
4
9
using : composite
5
10
steps :
23
28
--check-repeated-labels \
24
29
--check-redefined-labels \
25
30
--check-use-before-definition \
31
+ ${{ inputs.flags }} \
26
32
ql/test
27
33
env :
28
34
GITHUB_TOKEN : ${{ github.token }}
You can’t perform that action at this time.
0 commit comments