Skip to content

Commit

Permalink
Test several python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
HideakiImamura committed Aug 21, 2024
1 parent dc4f831 commit 79faae8
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,17 @@ on:
jobs:
tests:
runs-on: ubuntu-latest

strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- name: Setup Python${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: 3.11
python-version: ${{ matrix.python-version }}
- name: Install
run: |
python -m pip install -U pip
Expand Down

0 comments on commit 79faae8

Please sign in to comment.