Skip to content

Bump ruff from 0.5.5 to 0.6.3 #100

Bump ruff from 0.5.5 to 0.6.3

Bump ruff from 0.5.5 to 0.6.3 #100

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 check . --output-format github'
- name: Mypy
run: 'mypy .'