Skip to content

Commit 8aa1d07

Browse files
committed
add CI testing for quantumstrand
1 parent f602551 commit 8aa1d07

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/tests-qs.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: quantumstrand tests
2+
3+
on:
4+
push:
5+
branches: [ quantumstrand ]
6+
pull_request:
7+
branches: [ quantumstrand ]
8+
9+
jobs:
10+
qs_tests:
11+
name: quantumstrand tests
12+
runs-on: ubuntu-22.04
13+
steps:
14+
- name: Checkout FLOSS with submodule
15+
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
16+
with:
17+
submodules: true
18+
- name: Set up Python 3.11
19+
uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
20+
with:
21+
python-version: '3.11'
22+
- name: Install FLOSS
23+
run: |
24+
pip install -r requirements.txt
25+
pip install -e .[dev, qs]
26+
- name: Run tests
27+
run: pytest -k qs

0 commit comments

Comments
 (0)