Connect my checkstyle9.pl script to a action. #11
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Style Checker | |
on: | |
push: | |
branches: [ main, 'stable/13', 'stable/14' ] | |
pull_request: # maybe pull_request_target | |
branches: [ main ] | |
# types: [ opened, reopened, edited ] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
name: Style Checker | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 100 | |
fetch-tags: true | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Install packages | |
run: | | |
sudo apt-get update --quiet || true | |
sudo apt-get -yq --no-install-suggests --no-install-recommends install perl | |
- name: Run checker | |
run: | | |
tools/build/checkstyle9.pl ${{ github.event.repository.default_branch }}..${{ github.event.pull_request.head.sha }} |