install-poetry icon indicating copy to clipboard operation
install-poetry copied to clipboard

Github action for installing and configuring Poetry

Results 12 install-poetry issues
Sort by recently updated
recently updated
newest added

The Venv procedure outlined in the README for using a matrix that includes windows is incorrect. For windows it would be ".venv/scripts/activate", if you precede that with "source" it will...

The official actions/setup-python action supports poetry caching (https://github.com/actions/setup-python#caching-packages-dependencies). It would be nice to document how to use this action in combination with that. For example, do they use the same...

Hey, would it be possible to publish this action to Docker Hub? If the action is published to Docker Hub, then it is possible to use in Gitlab CI. The...

Closes #53 Adds ability to install plugins with: ```yaml - uses: snok/install-poetry@v1 with: version: 1.2.0a2 plugins: poetry-plugin-a, poetry-plugin-b ``` Might be worth adding a check that the Poetry version is...

Hi, It seems that when Poetry is installed with this action, other plugins such as [poetry-dynamic-versioning](https://github.com/mtkennerly/poetry-dynamic-versioning) do not function as expected. From [this previous issue](https://github.com/mtkennerly/poetry-dynamic-versioning/issues/61), it looks like the extensions...

Poetry 1.2+ will now support plugins. It will be a good idea to support installing plugins if the poetry version is 1.2+. That is by adding the below lines to...

There should be a simple way to run an os-matrix, including windows, regardless of the shell you're running. We can detect which shell is running and adapt accordingly. When we...

Following #94 and #98 we will merge back the old, no longer maintained (but working) installation script, and use that to install poetry for windows runners. That's only meant as...

I have a C++ project where I am using poetry to install packages for some utility scripts we are creating. I am using CMake for the build process where I...

Here's my GitHub Action file: ```YAML name: Run tests on: push: branches: - develop defaults: run: working-directory: ./services/flask jobs: tests: runs-on: 'ubuntu-latest' timeout-minutes: 5 steps: - name: Check out Git...