Skip to content

Commit

Permalink
Update check.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
entorb committed May 17, 2024
1 parent c2e46b5 commit 2fb23d3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Check out repository
- name: Checkout repository
uses: actions/checkout@v4
with:
persist-credentials: false
Expand All @@ -31,9 +31,10 @@ jobs:
uses: pre-commit/action@v3.0.1

- name: Install dependencies
if: ${{ hashFiles('requirements.txt') != '' }}
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
pip install -r requirements.txt
- name: Install and run pytest
run: |
Expand Down

0 comments on commit 2fb23d3

Please sign in to comment.