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