Skip to content

Update release.yaml #870

Update release.yaml

Update release.yaml #870

Workflow file for this run

name: pre-commit checks
on:
pull_request:
push: { branches: [main] }
workflow_dispatch:
jobs:
pre-commit-checks:
runs-on: ubuntu-22.04
steps:
- name: Checkout Repo
uses: actions/[email protected]
- name: Setup Python
uses: actions/[email protected]
with:
python-version: '3.10'
- name: Install pre-commit and Jupyter
run: pip install pre-commit==3.3.3 jupyter==1.0.0
- name: Run pre-commit checks
run: pre-commit run --all-files --show-diff-on-failure