Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/palewire/install-python-pipenv-pipfile
Easily install Python, pipenv and Pipfile packages in your GitHub Action
https://github.com/palewire/install-python-pipenv-pipfile
actions pipenv python
Last synced: 3 months ago
JSON representation
Easily install Python, pipenv and Pipfile packages in your GitHub Action
- Host: GitHub
- URL: https://github.com/palewire/install-python-pipenv-pipfile
- Owner: palewire
- License: mit
- Created: 2021-08-27T03:12:44.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-06-21T21:21:57.000Z (7 months ago)
- Last Synced: 2024-10-07T15:52:42.577Z (4 months ago)
- Topics: actions, pipenv, python
- Homepage:
- Size: 21.5 KB
- Stars: 14
- Watchers: 4
- Forks: 6
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Easily install Python, pipenv and Pipfile packages in your GitHub Action
## Features
- 🐍 Installs Python
- 🔨 Installs pipenv
- 📦 Installs Pipfile packages
- 💽 Caches packages for future use## Inputs
* `python-version`: The version of Python to install
## Usage
```yaml
name: Example action
jobs:
job:
name: My job
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4- name: Install Python, pipenv and Pipfile packages
uses: palewire/install-python-pipenv-pipfile@v4
with:
python-version: 3.11- name: Do my thing
run: make
```