We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 315d104 commit b1781c8Copy full SHA for b1781c8
.github/workflows/pre-commit.yml
@@ -24,11 +24,10 @@ jobs:
24
- name: Install Dependencies pip
25
run: |
26
python3 -m venv ~/.venvs/vals
27
- source ~/.venvs/vals/bin/activate
28
- pip3 install pre-commit
+ ~/.venvs/vals/bin/pip3 install pre-commit
+
29
# Validate all files in the repo
30
- name: Run pre-commit
31
32
33
git config --global --add safe.directory /__w/vals-operator/vals-operator
34
- pre-commit run --all-files -v || (cat /github/home/.cache/pre-commit/pre-commit.log && exit 1)
+ ~/.venvs/vals/bin/pre-commit run --all-files -v || (cat /github/home/.cache/pre-commit/pre-commit.log && exit 1)
0 commit comments