Skip to content

Commit

Permalink
try activating virtualenv
Browse files Browse the repository at this point in the history
  • Loading branch information
mathiasertl committed Dec 21, 2024
1 parent 661bc16 commit be6d604
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions .github/workflows/quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,20 +30,25 @@ jobs:
- name: Install dependencies
run: uv sync --no-group local

- name: Activate virtualenv
run: |
. .venv/bin/activate
echo PATH=$PATH >> $GITHUB_ENV
- name: Run ruff
run: uv run python dev.py code-quality
run: python dev.py code-quality

# Will show outdated dependencies, etc
- name: Validate state
run: uv run python dev.py validate state
run: python dev.py validate state

- name: Check license headers
run: uv run python dev.py validate license-headers
run: python dev.py validate license-headers

- name: Validate sdist/wheel
run: |
uv run python -m build
uv run twine check --strict dist/*
python -m build
twine check --strict dist/*
- name: Run pylint
run: uv run pylint --verbose ca/django_ca/ ca/ca/ docs/source/django_ca_sphinx/ devscripts/
run: pylint --verbose ca/django_ca/ ca/ca/ docs/source/django_ca_sphinx/ devscripts/

0 comments on commit be6d604

Please sign in to comment.