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 d7490fc commit bea2e23Copy full SHA for bea2e23
.github/workflows/pr_qc.yml
@@ -19,13 +19,18 @@ jobs:
19
python-version: 3.11
20
- name: Run qa
21
run: |
22
+ python_loc="$(which python || true)"
23
+ echo "python location: $python_loc"
24
+ echo "python --version $(python --version || true)"
25
+ python -m venv ./.venv
26
+ source ./.venv/bin/activate
27
echo "Running uv sync --all-extras --no-cache"
28
uv sync --all-extras --no-cache
29
echo "uv sync complete!"
30
echo "Checking for ruff before running qa..."
- ruff_loc="$(which ruff)"
31
+ ruff_loc="$(which ruff || true)"
32
echo "ruff located at $ruff_loc"
- ruff_installation="$(pip show ruff)"
33
+ ruff_installation="$(pip show ruff || true)"
34
echo "ruff installation: "
35
echo "$ruff_installation"
36
make qa
0 commit comments