Skip to content
This repository has been archived by the owner on Feb 23, 2022. It is now read-only.

Commit

Permalink
Merge pull request #339 from multinet-app/add_ci_check
Browse files Browse the repository at this point in the history
Add Pipfile/requirements.txt consistency checks
  • Loading branch information
jjnesbitt committed Mar 9, 2020
2 parents 1f5f0b1 + 686f373 commit 47476be
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@ jobs:
# Build and test Multinet server.
- run: pip install pipenv

- name: Generate new requirements.txt from Pipfile
run: pipenv lock --requirements > generated-requirements.txt

- name: Check generated requirements against existing requirements
run: diff requirements.txt generated-requirements.txt

- uses: actions/cache@v1
id: multinet-cache
with:
Expand Down

0 comments on commit 47476be

Please sign in to comment.