From 603db35c9c63bf86452d75903874ef4f345fc78c Mon Sep 17 00:00:00 2001 From: Askaholic Date: Sun, 12 Nov 2023 08:49:35 -0900 Subject: [PATCH] Add `pipenv verify` to lint actions --- .github/workflows/lint.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index e5d5c8323..547096556 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -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