Skip to content

Commit

Permalink
chore: Run tests for multiple python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
umanamente committed Jan 16, 2024
1 parent 5fcbfb7 commit ed32cdd
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ jobs:
permissions:
id-token: write
contents: read
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v3
Expand All @@ -23,7 +26,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.8'
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
Expand Down

0 comments on commit ed32cdd

Please sign in to comment.