Skip to content

Merge pull request #15 from scientificcomputing/dependabot/github_act… #51

Merge pull request #15 from scientificcomputing/dependabot/github_act…

Merge pull request #15 from scientificcomputing/dependabot/github_act… #51

Workflow file for this run

name: Pre-commit
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
check-code:
runs-on: ubuntu-24.04
steps:
# This action sets the current path to the root of your github repo
- uses: actions/checkout@v6
- name: Install Python
uses: actions/setup-python@v6
- name: Install pre-commit
run: python3 -m pip install pre-commit
- name: Run hooks
run: pre-commit run --all