We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent abe8338 commit de26150Copy full SHA for de26150
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,21 @@
1
+name: ci
2
+
3
+on:
4
+ push:
5
+ pull_request:
6
7
+jobs:
8
+ test:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v4
12
+ - uses: actions/setup-python@v5
13
+ with:
14
+ python-version: '3.11'
15
+ - name: Install
16
+ run: |
17
+ python -m pip install --upgrade pip
18
+ pip install -e .
19
+ pip install pytest
20
+ - name: Test
21
+ run: pytest -q
0 commit comments