Skip to content

Commit

Permalink
Test more Python versions (#571)
Browse files Browse the repository at this point in the history
* add more python versions

* turn on dependecy caching
  • Loading branch information
kelle authored Dec 10, 2024
1 parent 5dfabeb commit c93044e
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,18 @@ jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v4

- name: Set up Python 3.10
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: '3.10'
python-version: ${{ matrix.python-version }}
cache: 'pip'

- name: Install dependencies
run: |
Expand Down

0 comments on commit c93044e

Please sign in to comment.