Skip to content

Ruff linter and contribution guide #259

Ruff linter and contribution guide

Ruff linter and contribution guide #259

Workflow file for this run

name: codestyle check
on:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: "3.9"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements/requirements_dev.txt
- name: check codestyle
run: |
ruff --config pyproject.toml --diff .