Skip to content

Commit

Permalink
Run sanity with matrix of Python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
nicovank authored Apr 17, 2024
1 parent 58c4c51 commit fdd1e19
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/sanity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,18 @@ env:

jobs:
sanity:
strategy:
matrix:
python: [ '3.7', '3.8', '3.9', '3.10', '3.11', '3.12' ]

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

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

- name: Update pip
run: python3 -m pip install --upgrade pip
Expand Down

0 comments on commit fdd1e19

Please sign in to comment.