Skip to content

Removing duplicated code. #9

Removing duplicated code.

Removing duplicated code. #9

Workflow file for this run

name: Format and Lint Checks
on:
push:
branches:
- main
pull_request:
types: [ assigned, opened, synchronize, reopened ]
jobs:
check:
name: Format and Lint Checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install editable package
run: python -m pip install -e .[dev]
- name: Run Flake8
run: python -m flake8 . --statistics --count
- name: Check Isort import
run: python -m isort . --check-only --diff
- name: Black code format
run: python -m black . --check --diff