Skip to content

Commit

Permalink
github actions run in all python versions and ci version up (domainaw…
Browse files Browse the repository at this point in the history
  • Loading branch information
yjszk authored May 22, 2024
1 parent 6bd9aab commit c150c76
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/python-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,17 @@ jobs:

runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: "3.8"
python-version: ${{ matrix.python-version }}
- name: Install system dependencies
run: |
sudo apt-get update
Expand Down

0 comments on commit c150c76

Please sign in to comment.