We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7366027 commit 580c7bdCopy full SHA for 580c7bd
.github/workflows/test.yml
@@ -0,0 +1,26 @@
1
+name: Tests
2
+
3
+on:
4
+ pull_request:
5
+ branches: [ main ]
6
7
+jobs:
8
+ test:
9
+ runs-on: ubuntu-latest
10
+ strategy:
11
+ matrix:
12
+ python-version: ['3.12']
13
14
+ steps:
15
+ - uses: actions/checkout@v3
16
17
+ - name: Set up Python ${{ matrix.python-version }}
18
+ uses: actions/setup-python@v4
19
+ with:
20
+ python-version: ${{ matrix.python-version }}
21
22
+ - name: Install dependencies and run CI
23
+ run: |
24
+ python -m pip install --upgrade pip
25
+ pip install pytest pytest-cov
26
+ make ci
0 commit comments