LKI / action-pipenv

Use pipenv commands in your GitHub Actions Workflow

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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/action-pipenv@v2.0.1
      with:
        command: install -d # Install all dependencies, including development ones
    
    - name: Test
      uses: VaultVulp/action-pipenv@v2.0.1
      with:
        command: run test # Run custom `test` command defined in the `[scripts]` block of Pipfile

About

Use pipenv commands in your GitHub Actions Workflow

License:MIT License


Languages

Language:Dockerfile 90.1%Language:Shell 9.9%