Skip to content

Commit

Permalink
build: add python3.12 to our checks
Browse files Browse the repository at this point in the history
  • Loading branch information
MaferMazu committed Apr 30, 2024
1 parent 4406c7c commit 8eccae4
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,18 @@ jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.12']

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: requirements/dev.txt
- name: Install dependencies
run: |
make requirements
Expand Down

0 comments on commit 8eccae4

Please sign in to comment.