From 4a91445369a335d1a80e833e09e4c1577a9cc923 Mon Sep 17 00:00:00 2001 From: Martin Kozlovsky Date: Tue, 19 Dec 2023 19:48:49 +0100 Subject: [PATCH] no fail --- .github/workflows/pre-commit.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pre-commit.yaml b/.github/workflows/pre-commit.yaml index 568d9c74..67386a18 100644 --- a/.github/workflows/pre-commit.yaml +++ b/.github/workflows/pre-commit.yaml @@ -4,7 +4,7 @@ on: workflow_call: inputs: python: - required: true + required: false type: string description: "Python version to use for the virtual environment" os: @@ -57,6 +57,7 @@ jobs: tests: needs: setup strategy: + fail-fast: false matrix: os: ${{ fromJson(needs.setup.outputs.os-matrix) }} python-version: ${{ fromJson(needs.setup.outputs.python-matrix) }} @@ -76,7 +77,9 @@ jobs: cache: pip - name: Install package - run: pip install -e .[dev] + run: | + pip install -e .[all] + pip install gdown - name: Run pytest uses: pavelzw/pytest-action@v2