Skip to content

Commit

Permalink
Fix python versions in tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
riga committed Aug 7, 2024
1 parent f7f3914 commit 0da45b4
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/lint_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,19 @@ jobs:
strategy:
fail-fast: false
matrix:
python: ["38", "39", "310", "311", "312"]
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
name: typecheck (python ${{ matrix.python }})
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
with:
persist-credentials: false

- name: Setup python 🐍
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}

- name: Install dependencies ☕️
run: |
pip install -U pip setuptools
Expand All @@ -47,14 +52,19 @@ jobs:
strategy:
fail-fast: false
matrix:
python: ["37", "38", "39", "310", "311", "312"]
python: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
name: unittest (python ${{ matrix.python }})
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
with:
persist-credentials: false

- name: Setup python 🐍
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}

- name: Install dependencies ☕️
run: |
pip install -U pip setuptools
Expand Down

0 comments on commit 0da45b4

Please sign in to comment.