Replies: 1 comment 3 replies
-
You could do something like this right now perhaps? name: Poetry Project Testing
on: [push, pull_request]
jobs:
setup:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Bootstrap Poetry
uses: python-poetry/poetry/.github/actions/bootstrap-poetry@main
- name: Install Project
uses: python-poetry/poetry/.github/actions/poetry-install@main |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
pdm has https://github.com/pdm-project/setup-pdm and uv has https://github.com/astral-sh/setup-uv
Is is possible to have a setup-poetry to install a poetry, install packages to virtualenv/use system python and handle cache?
I can work on it, if it's an acceptable idea.
Beta Was this translation helpful? Give feedback.
All reactions