We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1acb581 commit c6022ceCopy full SHA for c6022ce
1 file changed
.github/workflows/tests.yml
@@ -0,0 +1,18 @@
1
+name: Run tests
2
+on: [push, pull_request]
3
+jobs:
4
+ test:
5
+ runs-on: ubuntu-latest
6
+ steps:
7
+ - uses: actions/checkout@v4
8
+ - name: Set up Python
9
+ uses: actions/setup-python@v5
10
+ with:
11
+ python-version: '3.x'
12
+ - name: Install dependencies
13
+ run: |
14
+ python -m pip install --upgrade pip
15
+ pip install -e .[test]
16
+ - name: Test with pytest
17
18
+ pytest tests/ -v
0 commit comments