We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06bf88c commit 6c95c42Copy full SHA for 6c95c42
1 file changed
.github/workflows/Breakage.yml
@@ -0,0 +1,19 @@
1
+# Ref: https://securitylab.github.com/research/github-actions-preventing-pwn-requests
2
+name: Breakage
3
+
4
+# read-only repo token
5
+# no access to secrets
6
+on:
7
+ pull_request:
8
9
+jobs:
10
+ break:
11
+ strategy:
12
+ fail-fast: false
13
+ matrix:
14
+ pkg: ["control-toolbox/CTDirect.jl", "control-toolbox/CTFlows.jl", "control-toolbox/OptimalControl.jl"]
15
+ pkgversion: [latest, stable]
16
+ uses: control-toolbox/CTActions/.github/workflows/breakage.yml@main
17
+ with:
18
+ pkg: ${{ matrix.pkg }}
19
+ pkgversion: ${{ matrix.pkgversion }}
0 commit comments