Skip to content

Commit

Permalink
feat: make uv-upgrade workflow more generic
Browse files Browse the repository at this point in the history
  • Loading branch information
nijel committed Nov 10, 2024
1 parent 02c3b17 commit 4f86ee0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/uv-upgrade.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ permissions:
jobs:
uv-update:
runs-on: ubuntu-24.04
if: hashFiles('uv.lock') != ''

steps:
- uses: actions/checkout@v4
Expand All @@ -35,7 +36,10 @@ jobs:
cache-suffix: 3.13

- name: Install apt dependencies
run: sudo ./ci/apt-install
run: |
if [ -f ./ci/apt-install ] ; then
sudo ./ci/apt-install
fi
- name: Set up Python
uses: actions/setup-python@v5
Expand Down

0 comments on commit 4f86ee0

Please sign in to comment.