We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 161c1d9 commit 4fd2a03Copy full SHA for 4fd2a03
.github/workflows/unit_test.yml
@@ -1,14 +1,14 @@
1
name: Unit Tests
2
3
-on: [ push ]
+on: [push]
4
5
jobs:
6
unit_tests:
7
8
runs-on: ${{matrix.os}}
9
strategy:
10
matrix:
11
- python-version: [ "3.12" ]
+ python-version: ["3.12", "3.9"]
12
os: [ubuntu-latest, windows-latest]
13
14
steps:
@@ -17,11 +17,11 @@ jobs:
17
uses: actions/setup-python@v5
18
with:
19
python-version: ${{ matrix.python-version }}
20
- cache: 'pip'
+ cache: "pip"
21
- name: Install dependencies
22
run: |
23
pip install --upgrade pip
24
pip install -r requirements.test.txt
25
- name: Run unit tests
26
27
- pytest
+ pytest
0 commit comments