Skip to content

notebook

notebook #49

name: Python Checks
on:
pull_request:
branches:
- dev
- main
push:
branches:
- dev
- main
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
run: |
pip install poetry
poetry install
pip install pre-commit
- name: Run pre-commit hooks
run: pre-commit run --all-files