Skip to content

Commit

Permalink
Ensure Python 3.13 in "sources" CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
khaeru committed Dec 23, 2024
1 parent 7a382b1 commit 5b5e3e5
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/sources.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true

env:
python-version: 3.13

jobs:
source:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -70,7 +73,7 @@ jobs:

- name: Install Python, the package, and dependencies
run: |
uv venv --python=${{ matrix.python-version }}
uv venv --python=${{ env.python-version }}
uv pip install .[tests] pytest-regex
- name: Tests of ${{ matrix.source }} data source
Expand Down Expand Up @@ -110,7 +113,7 @@ jobs:

- name: Install Python, the package, and dependencies
run: |
uv venv --python=${{ matrix.python-version }}
uv venv --python=${{ env.python-version }}
uv pip install .[tests] pytest-regex
- name: Download artifacts
Expand Down

0 comments on commit 5b5e3e5

Please sign in to comment.