Skip to content

Code improvement (#22) #62

Code improvement (#22)

Code improvement (#22) #62

Workflow file for this run

name: Code Lint
permissions:
contents: read
on:
pull_request:
types: [ reopened ]
push:
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: rsb-23/actions/checkout@main
- uses: rsb-23/actions/setup-python@main
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install '.[lint]'
pre-commit install
- name: Run pre-commit
env:
SKIP: mypy,no-commit-to-branch
run: pre-commit run --all-files