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 72ef53e commit 043675cCopy full SHA for 043675c
.github/workflows/CI.yml
@@ -0,0 +1,28 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ pull request:
6
+ workflow_dispatch:
7
8
+jobs:
9
+ test:
10
+ runs-on: ubuntu-latests
11
12
+ steps:
13
+ - name: Clone repo
14
+ uses: actions/checkout@v4
15
16
+ - name: Set up Python
17
+ uses: actions/setup-python@v5
18
+ with:
19
+ python-version: "3.9"
20
21
+ - name: Python Dependencies
22
+ run: |
23
+ python -m pip install --upgrade pip
24
+ pip install -e .[test]
25
26
+ - name: Run Tests with Pytest
27
28
+ pytest --verbose
0 commit comments