-
I'm trying to use Any advice for setup and use in the below Actions context? jobs:
check:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Verify project
run: |
uv sync --dev
poe verify_project |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
For others running into this, the answer is to run |
Beta Was this translation helpful? Give feedback.
-
I'm glad you found a solution :) I usually use pipx for setup like so: https://github.com/nat-n/homebrew-poethepoet/blob/main/.github/workflows/update-formula.yaml#L19 |
Beta Was this translation helpful? Give feedback.
For others running into this, the answer is to run
poe
using theuv run
command, souv run poe
should do the trick.