Skip to content

Commit

Permalink
Update uv.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
simonw authored Aug 21, 2024
1 parent b779e63 commit 13337f7
Showing 1 changed file with 15 additions and 9 deletions.
24 changes: 15 additions & 9 deletions .github/workflows/uv.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,18 @@ jobs:
uv-example:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up uv
run: |-
curl -LsSf https://astral.sh/uv/0.3.0/install.sh | sh
cd
pwd
find .
find .cargo
find .cache
- uses: actions/checkout@v4
- id: cache-cargo-bin
uses: actions/cache@v4
with:
path: .cargo/bin
key: ${{ runner.os }}-cargo-bin
- name: Generate Prime Numbers
if: steps.cache-primes.outputs.cache-hit != 'true'
run: |
curl -LsSf https://astral.sh/uv/0.3.0/install.sh | sh
find .cargo
- name: Run uv
run: |
uv python install
find .

0 comments on commit 13337f7

Please sign in to comment.