Skip to content

feat: add pre-commit #22

feat: add pre-commit

feat: add pre-commit #22

Workflow file for this run

name: CI/CD workflow
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v2
- name: Check files using the black formatter
- uses: psf/black@stable
with:
options: ". --check --skip-string-normalization"