Skip to content

Bump the actions group with 8 updates #298

Bump the actions group with 8 updates

Bump the actions group with 8 updates #298

Workflow file for this run

name: Repo
on:
push:
branches:
- main
pull_request:
branches:
- main
defaults:
run:
shell: bash
jobs:
whitespace:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Check for trailing whitespace
run: |
if git grep -I -n '[[:blank:]]$' -- ':!tests/**'; then
echo "Trailing whitespace found. Please fix it."
exit 1
fi