https://github.com/moneymeets/action-setup-python-poetry
GitHub action for setting up Python and Poetry
https://github.com/moneymeets/action-setup-python-poetry
Last synced: 7 months ago
JSON representation
GitHub action for setting up Python and Poetry
- Host: GitHub
- URL: https://github.com/moneymeets/action-setup-python-poetry
- Owner: moneymeets
- Created: 2021-12-21T14:10:04.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2024-04-12T07:03:33.000Z (over 1 year ago)
- Last Synced: 2024-04-12T13:23:40.865Z (over 1 year ago)
- Homepage:
- Size: 44.9 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# action-setup-python-poetry
GitHub action for setting up Python and Poetry
# Usage
See [action.yml](action.yml).
Basic:
```yaml
steps:
- uses: moneymeets/action-setup-python-poetry@master
```With specific versions:
```yaml
steps:
- uses: moneymeets/action-setup-python-poetry@master
with:
python_version: 3.10.0
poetry_version: 1.1.11
```With private git repository dependencies:
```yaml
steps:
- uses: moneymeets/action-setup-python-poetry@master
with:
ssh_key: ${{ secrets.SSH_KEY }}
```