Skip to content

Commit

Permalink
DX: run AmpForm tests with QRules v0.9.x
Browse files Browse the repository at this point in the history
  • Loading branch information
redeboer committed Oct 13, 2023
1 parent d18fbcb commit 689fab4
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/ci-qrules-v0.9.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Test with QRules v0.9

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

env:
PYTHONHASHSEED: "0"

on:
push:
branches:
- main
- epic/*
- "[0-9]+.[0-9]+.x"
pull_request:
branches:
- main
- epic/*
- "[0-9]+.[0-9]+.x"
workflow_dispatch:

jobs:
pytest:
name: Run unit tests
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: ComPWA/actions/pip-install@v1
with:
additional-packages: tox
editable: "yes"
extras: test
python-version: "3.9"
specific-packages: qrules==0.9.*
- run: pytest -n auto

0 comments on commit 689fab4

Please sign in to comment.