Skip to content

Chore/add python formatter and linter (#37) #2

Chore/add python formatter and linter (#37)

Chore/add python formatter and linter (#37) #2

Workflow file for this run

name: Check Python code format with Black
on:
push:
branches:
- main
paths:
- 'src/**/*.py'
pull_request:
paths:
- 'src/**/*.py'
jobs:
black-format:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install Black
run: pip install black
- name: Check code format with Black
run: black --check src/