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.
1 parent f602551 commit 8aa1d07Copy full SHA for 8aa1d07
.github/workflows/tests-qs.yml
@@ -0,0 +1,27 @@
1
+name: quantumstrand tests
2
+
3
+on:
4
+ push:
5
+ branches: [ quantumstrand ]
6
+ pull_request:
7
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
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