We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents caf0a5c + e6badfd commit 2c97f0eCopy full SHA for 2c97f0e
.github/workflows/python-tests.yml
@@ -0,0 +1,26 @@
1
+name: Python package
2
+
3
+on: [push]
4
5
+jobs:
6
+ build:
7
8
+ runs-on: ubuntu-latest
9
+ strategy:
10
+ matrix:
11
+ python-version: ["3.10", "3.13"]
12
13
+ steps:
14
+ - uses: actions/checkout@v4
15
+ - name: Set up Python ${{ matrix.python-version }}
16
+ uses: actions/setup-python@v5
17
+ with:
18
+ python-version: ${{ matrix.python-version }}
19
+ - name: Install dependencies
20
+ # This case we are only updating pip, but you could add other dependencies if needed.
21
+ run: |
22
+ python -m pip install --upgrade pip
23
+ # FIXME Is there anything else that needs to be installed?
24
+ - name: Test with pytest
25
26
+ pytest
0 commit comments