Skip to content

Add changelog, update README with badges, and create PyPI publish wor… #2

Add changelog, update README with badges, and create PyPI publish wor…

Add changelog, update README with badges, and create PyPI publish wor… #2

Workflow file for this run

name: pre-commit
on:
pull_request:
push:
branches: [main, develop]
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.9'
cache: pip
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[dev]
- name: Run pre-commit
uses: pre-commit/[email protected]