Skip to content

Commit

Permalink
ci: Setup cached uv
Browse files Browse the repository at this point in the history
  • Loading branch information
pawamoy committed Aug 4, 2024
1 parent 42ee753 commit d9a4f22
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ jobs:
- name: Fetch all tags
run: git fetch --depth=1 --tags

- name: Set up Python
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.11"

- name: Install uv
run: pip install uv
- name: Setup uv
uses: hynek/setup-cached-uv@v2

- name: Install dependencies
run: make setup
Expand Down Expand Up @@ -80,14 +80,14 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Set up Python
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true

- name: Install uv
run: pip install uv
- name: Setup uv
uses: hynek/setup-cached-uv@v2

- name: Install dependencies
env:
Expand Down

0 comments on commit d9a4f22

Please sign in to comment.