Skip to content

Set up GitHub Actions for running tests and checking types and format… #3

Set up GitHub Actions for running tests and checking types and format…

Set up GitHub Actions for running tests and checking types and format… #3

Workflow file for this run

---
name: pre-commit
on:
pull_request:
push:
branches:
- main
jobs:
pre-commit:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Pre-commit
uses: pre-commit/action@v3.0.1