Skip to content

add 1.2.2 changes

add 1.2.2 changes #8

Workflow file for this run

name: pre-commit
on:
push:
branches: [main]
pull_request:
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade pre-commit
python -m pip install -e .
- name: pre-commit checks
run: pre-commit run --all-files