Skip to content

Update github actions versions due to deprecation (#525) #24

Update github actions versions due to deprecation (#525)

Update github actions versions due to deprecation (#525) #24

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@v4
- name: Check for trailing whitespace
run: |
if git grep -I -n '[[:blank:]]$'; then
echo "Trailing whitespace found. Please fix it."
exit 1
fi