Skip to content

Commit

Permalink
Add fypp workflow attempt.
Browse files Browse the repository at this point in the history
  • Loading branch information
jatkinson1000 committed Nov 18, 2023
1 parent 424b3ed commit 7fe963b
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/fypp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: fypp-checks

on:
# run on every push
push:
# run on every push (not commit) to a PR, plus open/reopen
pull_request:
types:
- synchronize
- opened
- reopened

jobs:
various:
name: FYPP checks - run pre-commit hook in repo
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.11"
- run: pip install fypp

- name: Check pre-commit hook
run: ./pre-commit

0 comments on commit 7fe963b

Please sign in to comment.