Home | History | Annotate | Line # | Download | only in workflows
      1 name: 'Check Formatting'
      2 on: [pull_request]
      3 jobs:
      4   check-formatting:
      5     runs-on: ubuntu-latest
      6     steps:
      7       - name: Check out repository
      8         uses: actions/checkout@v4
      9       - name: Check for trailing whitespace
     10         run: scripts/check_trailing_whitespace.sh
     11