Skip to content

Commit

Permalink
Add check for pull requests (GitHub action)
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Weil <[email protected]>
  • Loading branch information
stweil committed Apr 15, 2024
1 parent 7851f8a commit aad6308
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/pr_check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Check pull requests.

name: Check pull request

# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows
on:
# Trigger workflow on pull request.
pull_request:
# branches: [ ci ]

jobs:
check_pull_request:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Show whitespace issues.
run: git log --check ${{github.event.pull_request.base.sha}^}...
- name: Check for whitespace issues.
run: git log --check ${{github.event.pull_request.base.sha}}... | grep "^[^:+]*:[0-9]*:"
# TODO: Add more checks here (codespell, ...).

0 comments on commit aad6308

Please sign in to comment.