Skip to content

Bump black from 24.2.0 to 24.10.0 #96

Bump black from 24.2.0 to 24.10.0

Bump black from 24.2.0 to 24.10.0 #96

Workflow file for this run

name: Static analysis
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
flake8:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/[email protected]
with:
python-version: 3.8
- run: pip install -r requirements.txt
- run: flake8
mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/[email protected]
with:
python-version: 3.8
- run: pip install -r requirements.txt
- run: mypy ./
black:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/[email protected]
with:
python-version: 3.8
- run: pip install -r requirements.txt
- run: black ./ --check
isort:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/[email protected]
with:
python-version: 3.8
- run: pip install -r requirements.txt
- run: isort ./ --diff --check