From a78380dc1bc5050f199f9d1c21e01057a1ac3af1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20M=C2=AA=20Fern=C3=A1ndez?= Date: Tue, 4 Jul 2023 12:59:13 +0200 Subject: [PATCH] Minor fix in GitHub workflow --- .github/workflows/pre-commit.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index 2c53c42..6e3caa4 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -25,16 +25,13 @@ jobs: dev-requirements.txt architecture: x64 - name: 'Install requirements (standard)' - if: steps.cachepy.outputs.cache-hit != 'true' run: | pip install --upgrade pip wheel pip install -r requirements.txt - name: 'Freeze Python ${{ matrix.python-version }} constraints' - if: steps.cachepy.outputs.cache-hit != 'true' run: | pip freeze > constraints-${{ matrix.python-version }}.txt - name: 'Install dev requirements' - if: steps.cachepy.outputs.cache-hit != 'true' run: pip install -r dev-requirements.txt -r mypy-requirements.txt - name: MyPy cache uses: actions/cache@v3