Skip to content

Bump black from 23.10.1 to 23.11.0 #37

Bump black from 23.10.1 to 23.11.0

Bump black from 23.10.1 to 23.11.0 #37

Workflow file for this run

name: Static check source code
on:
push:
branches: ['main', 'develop']
pull_request:
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.12
uses: actions/setup-python@v4
with:
python-version: '3.12'
cache: 'pip'
cache-dependency-path: 'requirements/dev.txt'
- name: Install requirements
run: 'python -m pip install -r requirements/dev.txt'
- name: Cache linter caches
uses: actions/cache@v3
with:
key: ${{ runner.os }}-linters
path: |
.mypy_cache
.ruff_cache
- name: Black
run: 'black . --diff --color --check'
- name: Ruff
run: 'ruff . --output-format github'
- name: Mypy
run: 'mypy .'