Skip to content

Commit

Permalink
Fix periodic CI job
Browse files Browse the repository at this point in the history
Just running make update-deps doesn't work, since uv refuses to run
outside of a virtualenv by default. Go back to using neophile.

Fix the Python version for running tox in the periodic CI workflow.
  • Loading branch information
rra committed Jul 5, 2024
1 parent d090c2c commit c103e59
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/periodic-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,18 +25,16 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
- name: Run neophile
uses: lsst-sqre/run-neophile@v1
with:
python-version: ${{ env.PYTHON_VERSION }}

- name: Update dependencies
run: make update-deps
mode: update

- name: Run tests in tox
uses: lsst-sqre/run-tox@v1
with:
python-version: ${{ matrix.python }}
python-version: ${{ env.PYTHON_VERSION }}
tox-envs: "lint,typing,py"
tox-plugins: tox-uv
use-cache: false
Expand Down

0 comments on commit c103e59

Please sign in to comment.