Skip to content

Commit

Permalink
Set path directly without env variable
Browse files Browse the repository at this point in the history
The path could not be found.
Perhaps the syntax for referring to the env variable was wrong.
  • Loading branch information
SGeeversAtVortech committed Sep 19, 2024
1 parent fb6fde5 commit cd1be0f
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/rtc-tools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,11 @@ jobs:
style:
runs-on: ubuntu-latest
timeout-minutes: 30
env:
PRE_COMMIT_HOME: "${{ github.workspace }}/.cache/pre-commit"
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: "${PRE_COMMIT_HOME}"
path: "${{ github.workspace }}/.cache/pre-commit"
key: default
- run: pip install pre-commit
- run: pre-commit run --all-files --show-diff-on-failure
Expand Down

0 comments on commit cd1be0f

Please sign in to comment.