Skip to content

Update Makefile

Update Makefile #160

Workflow file for this run

name: Format Check
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
run-format-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.11
cache: "pip"
cache-dependency-path: "**/pyproject.toml"
- name: Install pre-commit packages
run: pip install .[format] --quiet
- name: Run pre-commit
run: pre-commit run --all-files