This action sets up a pipenv for use in actions by:
- installing a version of pipenv with your configured version of python
See action.yml
Basic:
steps:
- uses: actions/checkout@master
- uses: actions/setup-python@v1
- uses: actions/pipenv@v1
- run: pipenv run my_script.py
With a specific version:
- uses: actions/pipenv@v1
with:
version: 2018.11.26
The scripts and documentation in this project are released under the MIT License
Contributions are welcome! See Contributor's Guide