Skip to content

Commit

Permalink
no fail
Browse files Browse the repository at this point in the history
  • Loading branch information
kozlov721 committed Dec 19, 2023
1 parent 3262613 commit 4a91445
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/pre-commit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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) }}
Expand All @@ -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
Expand Down

0 comments on commit 4a91445

Please sign in to comment.