Skip to content

Commit

Permalink
Add pipenv verify to lint actions (#984)
Browse files Browse the repository at this point in the history
  • Loading branch information
Askaholic authored Nov 12, 2023
1 parent a0c19de commit b9d5755
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,18 @@ jobs:
with:
flake8_version: 6.0.0
plugins: flake8-quotes~=3.3

pipenv-verify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.10'

- name: Install dependencies
run: pip install pipenv

- run: pipenv verify

0 comments on commit b9d5755

Please sign in to comment.