Skip to content

Re-add Ruff to GitHub Actions #2

Re-add Ruff to GitHub Actions

Re-add Ruff to GitHub Actions #2

Workflow file for this run

name: Ruff
on:
push:
pull_request:
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: |
python -Im pip install --upgrade pip
python -Im pip install ruff
- name: Run ruff
working-directory: ./src
run: ruff --output-format=github django_nh3