actions-pipenv icon indicating copy to clipboard operation
actions-pipenv copied to clipboard

GitHub Actions for Python project with pipenv

license release GitHub release date

GitHub Actions for pipenv - Python

GitHub Actions for pipenv - Python

Getting started

Branch Base image
3.6 python:3.6
3.7 python:3.7

Create main.workflow

workflow "Python workflow" {
  on = "push"
  resolves = ["test"]
}

action "pipenv-sync" {
  uses = "peaceiris/[email protected]"
  args = ["sync"]
}

action "test" {
  needs = "pipenv-sync"
  uses = "peaceiris/[email protected]"
  args = ["run", "test"]
}

Examples

MkDocs

License

MIT License - peaceiris/actions-pipenv

About the author