We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 904656f + 9d238f4 commit 4cce97eCopy full SHA for 4cce97e
.github/workflows/regression.yaml
@@ -0,0 +1,28 @@
1
+name: run bdsim regression
2
+
3
+on:
4
+ workflow_dispatch:
5
6
7
+jobs:
8
9
+ regression:
10
+ name: run regression
11
+ runs-on: ubuntu-latest
12
+ container: bdsim/${{ matrix.dockerimage }}:develop
13
14
+ strategy:
15
+ fail-fast: false
16
+ matrix:
17
+ dockerimage: [ alma9-g4.10.7-bdsim, alma9-g4.11.0-bdsim,
18
+ alma9-g4.11.1-bdsim, alma9-g4.11.2-bdsim,
19
+ alma9-g4.11.3-bdsim ]
20
21
+ steps:
22
+ - name: Checkout regression
23
+ uses: actions/checkout@v4
24
+ id: checkout
25
26
+ - name: Run regression tests
27
+ run: |
28
+ pytest
0 commit comments