Skip to content

Commit

Permalink
chore: adjusted python testing targets
Browse files Browse the repository at this point in the history
  • Loading branch information
ddkasa committed Jan 24, 2024
1 parent 3cd74e8 commit 25a9301
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ name: Tests
on:
push:
branches:
- 'master'
- "master"
pull_request:
branches:
- '**'
- "**"

jobs:
python:
Expand All @@ -15,7 +15,7 @@ jobs:
strategy:
max-parallel: 1
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- name: Checkout
Expand All @@ -26,7 +26,7 @@ jobs:
- name: Use Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
cache: 'pip'
cache: "pip"
python-version: ${{ matrix.python-version }}

- name: Install requirements
Expand Down

0 comments on commit 25a9301

Please sign in to comment.