We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f16e89f commit 8f2e52fCopy full SHA for 8f2e52f
1 file changed
.github/workflows/python.yaml
@@ -0,0 +1,23 @@
1
+name: Python CI
2
+
3
+on:
4
+ push:
5
+ pull_request:
6
7
+jobs:
8
+ test:
9
+ runs-on: ubuntu-latest
10
+ strategy:
11
+ matrix:
12
+ python-version: [3.10, 3.11]
13
14
+ steps:
15
+ - uses: actions/checkout@v4
16
+ - name: Set up Python
17
+ uses: actions/setup-python@v4
18
+ with:
19
+ python-version: ${{ matrix.python-version }}
20
+ - name: Install dependencies
21
+ run: pip install -r requirements.txt
22
+ - name: Run tests
23
+ run: python -m unittest discover tests
0 commit comments