Skip to content
Merged
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/daily-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,6 @@ jobs:

- name: Install uv and set the python version
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
cache-dependency-glob: "uv.lock"

- name: Configure OpenMP for macos clang
if: ${{ matrix.os == 'macos-latest' }}
Expand All @@ -72,7 +69,10 @@ jobs:
UV_RESOLUTION: ${{ matrix.dependencies-strategy }}
UV_PYTHON_PREFERENCE: only-managed
run: |
# We run the upgrade commands here explicitly to update the lock
uv python upgrade ${{ matrix.python-version }}
uv lock --upgrade --resolution ${{ matrix.dependencies-strategy }}
# nox will create venvs using uv, so we need to set uv options through env vars
./noxfile.py -s 'test_${{ matrix.gt4py-module }}-${{ matrix.python-version }}' -t 'cpu'
- name: Notify slack
Expand Down
Loading