Skip to content

Whitelisting addition clean up #43

Whitelisting addition clean up

Whitelisting addition clean up #43

Workflow file for this run

name: Ruff Lint & Format
on: [push, pull_request]
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- name: Checkout ruff repo
uses: actions/checkout@v4
- name: Lint
uses: astral-sh/ruff-action@v1
with:
args: "check -v"
- name: Format
uses: astral-sh/ruff-action@v1
with:
args: "format --check -v"