Skip to content

Disable charity event cog #348

Disable charity event cog

Disable charity event cog #348

Workflow file for this run

name: Format & Lint
on: [push, pull_request]
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.9"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install black ruff isort
- name: Run isort
run: |
isort . --check --profile "black"
- name: Run black
run: |
black . --check --verbose
- name: Run ruff
run: |
ruff .