Skip to content

Commit 4fd2a03

Browse files
chore: add python 3.9 to unit tests
1 parent 161c1d9 commit 4fd2a03

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/unit_test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
name: Unit Tests
22

3-
on: [ push ]
3+
on: [push]
44

55
jobs:
66
unit_tests:
77
name: Unit Tests
88
runs-on: ${{matrix.os}}
99
strategy:
1010
matrix:
11-
python-version: [ "3.12" ]
11+
python-version: ["3.12", "3.9"]
1212
os: [ubuntu-latest, windows-latest]
1313

1414
steps:
@@ -17,11 +17,11 @@ jobs:
1717
uses: actions/setup-python@v5
1818
with:
1919
python-version: ${{ matrix.python-version }}
20-
cache: 'pip'
20+
cache: "pip"
2121
- name: Install dependencies
2222
run: |
2323
pip install --upgrade pip
2424
pip install -r requirements.test.txt
2525
- name: Run unit tests
2626
run: |
27-
pytest
27+
pytest

0 commit comments

Comments
 (0)