Skip to content

Commit

Permalink
CI: Pin to python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
luigi311 committed Oct 8, 2024
1 parent 4a4c9f9 commit 023b638
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,19 @@ on:
- .gitignore
- "*.md"

env:
PYTHON_VERSION: '3.12'

jobs:
pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}

- name: "Install dependencies"
run: pip install -r requirements.txt && pip install -r test/requirements.txt

Expand All @@ -26,6 +33,10 @@ jobs:
steps:
- uses: actions/checkout@v3

- uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}

- name: "Install dependencies"
run: |
pip install -r requirements.txt
Expand Down

0 comments on commit 023b638

Please sign in to comment.