Skip to content

Connect my checkstyle9.pl script to a action. #6

Connect my checkstyle9.pl script to a action.

Connect my checkstyle9.pl script to a action. #6

Workflow file for this run

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:
- uses: actions/checkout@v4
with:
fetch-depth: 0

Check failure on line 20 in .github/workflows/style.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/style.yml

Invalid workflow file

You have an error in your yaml syntax on line 20
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 main..${{ github.event.pull_request.head.sha }}