Skip to content

Commit

Permalink
CI: Add job to check formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
dbaston committed Dec 7, 2023
1 parent 977be13 commit d78d21c
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/code_checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Code Checks

on:
push:
paths-ignore:
- 'doc/**'
pull_request:
paths-ignore:
- 'doc/**'

permissions:
contents: read

jobs:

pre-commit-checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
- uses: pre-commit/action@v3.0.0

0 comments on commit d78d21c

Please sign in to comment.