Skip to content

Commit

Permalink
Fix incorrect cache path
Browse files Browse the repository at this point in the history
  • Loading branch information
Kutu committed Jun 1, 2024
1 parent 8439716 commit 5015746
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
pull_request:

jobs:
run_checks:
run-checks:
runs-on: ubuntu-24.04

steps:
Expand All @@ -18,7 +18,7 @@ jobs:
python-version: "3.11.9"
- uses: actions/cache@v3
with:
path: venv
path: .venv
key: ${{ runner.os }}-${{ hashFiles('requirements/requirements-check.txt') }}
- run: just setup-check
- run: just check
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
pull_request:

jobs:
run_tests:
run-tests:
runs-on: ubuntu-24.04

steps:
Expand All @@ -18,7 +18,7 @@ jobs:
python-version: "3.11.9"
- uses: actions/cache@v3
with:
path: venv
path: .venv
key: ${{ runner.os }}-${{ hashFiles('requirements/requirements-tests.txt') }}
- run: just setup-tests
- run: just test

0 comments on commit 5015746

Please sign in to comment.