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

Use pipenv commands in your GitHub Actions Workflow

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 dependecies
      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