Skip to content

theahura/pip-compile-diff-action

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

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Pip Compile Diff

Run pip-compile in a Github Workflow and compare the output with the pre-existing requirements.txt. This is helpful if you want to ensure that changes to requirements.in are correctly updated to requirements.txt.

Usage

To use, create a workflow file (e.g. .github/workflows/parity-check.yml) with the following:

name: depcheck
on: [push]
jobs:
  check:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v2
    - name: pip-compile-parity
      uses: theahura/pip-compile-diff-action@main