Adding tests for laser interaction rates. #10
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: run bdsim regression | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| branches: | |
| - 'main' | |
| jobs: | |
| regression: | |
| name: run regression | |
| runs-on: ubuntu-latest | |
| container: bdsim/${{ matrix.dockerimage }}:develop | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| dockerimage: [ alma9-g4.10.7-bdsim, alma9-g4.11.0-bdsim, | |
| alma9-g4.11.1-bdsim, alma9-g4.11.2-bdsim, | |
| alma9-g4.11.3-bdsim ] | |
| steps: | |
| - name: Checkout regression | |
| uses: actions/checkout@v4 | |
| id: checkout | |
| - name: Run regression tests | |
| run: | | |
| source /root/.bashrc | |
| source /bdsim/venv-bdsim/bin/activate | |
| /bdsim/venv-bdsim/bin/pip install pytest | |
| pytest |