Improve collectstatic verbosity levels (#50) #166
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
lint-command: | |
- bandit -r . -x ./tests | |
- black --check --diff . | |
- flake8 . | |
- isort --check-only --diff . | |
- pydocstyle . | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.x" | |
cache: 'pip' | |
cache-dependency-path: 'pyproject.toml' | |
- run: python -m pip install -e .[lint] | |
- run: ${{ matrix.lint-command }} | |
dist: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.x" | |
- run: python -m pip install --upgrade pip build wheel twine | |
- run: python -m build --sdist --wheel | |
- run: python -m twine check dist/* | |
- uses: actions/upload-artifact@v4 | |
with: | |
path: dist/* | |
pytest-python: | |
name: PyTest | |
needs: | |
- lint | |
strategy: | |
matrix: | |
python-version: | |
- "3.9" | |
- "3.10" | |
- "3.11" | |
- "3.12" | |
django-version: | |
- "4.2" # LTS | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- run: python -m pip install .[test] | |
- run: python -m pip install django~=${{ matrix.django-version }}.0 | |
- run: python -m pytest | |
- uses: codecov/codecov-action@v5 | |
with: | |
flags: py${{ matrix.python-version }} | |
pytest-django: | |
name: PyTest | |
needs: | |
- lint | |
strategy: | |
matrix: | |
python-version: | |
- "3.11" | |
django-version: | |
# oldest LTS gets tested on all Python versions | |
- "5.1" | |
- "5.2" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- run: python -m pip install .[test] | |
- run: python -m pip install django~=${{ matrix.django-version }}.0 | |
- run: python -m pytest | |
- uses: codecov/codecov-action@v5 | |
with: | |
flags: dj${{ matrix.django-version }} | |
pytest-extras: | |
name: PyTest | |
needs: | |
- lint | |
strategy: | |
matrix: | |
extras: | |
- "whitenoise" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.x | |
- run: python -m pip install .[test,${{ matrix.extras }}] | |
- run: python -m pytest | |
- uses: codecov/codecov-action@v5 | |
with: | |
flags: dj${{ matrix.extras }} | |
codeql: | |
name: CodeQL | |
needs: [ dist, pytest-python, pytest-django ] | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
strategy: | |
fail-fast: false | |
matrix: | |
language: [ python ] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v3 | |
with: | |
languages: ${{ matrix.language }} | |
queries: +security-and-quality | |
- name: Autobuild | |
uses: github/codeql-action/autobuild@v3 | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v3 | |
with: | |
category: "/language:${{ matrix.language }}" |