Skip to content

Commit

Permalink
chore: fix github action for python tests
Browse files Browse the repository at this point in the history
  • Loading branch information
svituz committed Jan 9, 2024
1 parent f3f5848 commit 7ba500c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,11 @@ on:

jobs:
build:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["2.7.x", "3.5.x", "3.6.x", "3.7.x", "3.8.x", "3.9.x", "3.10.x", "3.11.x"]
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand Down

0 comments on commit 7ba500c

Please sign in to comment.