Skip to content
This repository has been archived by the owner on Aug 19, 2019. It is now read-only.
/ actions-pipenv Public archive

GitHub Actions for Python project with pipenv

License

Notifications You must be signed in to change notification settings

peaceiris/actions-pipenv

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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/actions-pipenv@3.6"
  args = ["sync"]
}

action "test" {
  needs = "pipenv-sync"
  uses = "peaceiris/actions-pipenv@3.6"
  args = ["run", "test"]
}

Examples

MkDocs

License

MIT License - peaceiris/actions-pipenv

About the author