Skip to content

Use pipenv commands in your GitHub Actions Workflow

License

Notifications You must be signed in to change notification settings

VaultVulp/action-pipenv

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Pipenv for Github Actions

Use pipenv commands in your GitHub Actions Workflow

Install dependencies and run custom command:

  install-test:
    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v2 # Checking out the repo

    - name: Install dependencies
      uses: VaultVulp/[email protected]
      with:
        command: install -d # Install all dependencies, including development ones
    
    - name: Test
      uses: VaultVulp/[email protected]
      with:
        command: run test # Run custom `test` command defined in the `[scripts]` block of Pipfile