Skip to content

Commit 4cce97e

Browse files
Merge pull request #6 from stewartboogert/workflow
ci/cd: Add run workflow
2 parents 904656f + 9d238f4 commit 4cce97e

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/regression.yaml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)