Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Provisioner User committed Feb 25, 2024
1 parent ac05a3a commit 5dd6014
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/check-on-pr-push.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: 'Verify Pull Request'

"on":
pull_request:
push:
branches:
- 'main'

permissions:

jobs:
pre-commit:
runs-on: 'ubuntu-latest'
steps:
- name: 'Checkout'
uses: 'actions/checkout@v4'

- name: 'Install Repository Specific Tools'
run: make tools

- name: 'Install Python for Pre-Commit'
uses: 'actions/setup-python@v3'

- name: 'Verify Files'
uses: 'pre-commit/[email protected]'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 5dd6014

Please sign in to comment.