Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jayclassless/setup-poetry-action
A Github Action to install Poetry into a Python environment
https://github.com/jayclassless/setup-poetry-action
github-actions
Last synced: 2 days ago
JSON representation
A Github Action to install Poetry into a Python environment
- Host: GitHub
- URL: https://github.com/jayclassless/setup-poetry-action
- Owner: jayclassless
- License: mit
- Created: 2020-08-30T00:19:23.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-12-18T17:49:47.000Z (about 1 year ago)
- Last Synced: 2024-12-21T02:47:08.332Z (29 days ago)
- Topics: github-actions
- Language: JavaScript
- Homepage:
- Size: 624 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Setup Poetry Action
A Github Action to install [Poetry](https://python-poetry.org) into a Python environment.
This is largely inspired-by/stolen-from [dschep/install-poetry-action](https://github.com/dschep/install-poetry-action)
# Usage
```yaml
steps:
- uses: actions/setup-python@v2
- uses: jayclassless/setup-poetry-action@v1
- uses: actions/checkout@v2
- run: poetry install
```# Options
- `version`: The version of Poetry to install (defaults to the most recent).
- `preview`: Whether or not to install the preview version of Poetry (defaults to false).
- `create_virtualenvs`: Whether or not Poetry should create a new virtualenv when installing your project (defaults to false).