Skip to content

Formatting and lenting #26

Formatting and lenting

Formatting and lenting #26

Workflow file for this run

name: Lint and Auto-Fix Code
on:
push:
pull_request:
branches:
- main
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
- name: Install pre-commit
run: pip install pre-commit
- name: Run pre-commit
run: pre-commit run --all-files