Skip to content

Bump pre-commit from 2.21.0 to 3.8.0 (#115) #88

Bump pre-commit from 2.21.0 to 3.8.0 (#115)

Bump pre-commit from 2.21.0 to 3.8.0 (#115) #88

name: main push checks
on:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check code contains no FIXME's
run: |
git grep -r --no-color ${case_sensitive} --line-number -e "FIXME" :^.github
if [[ $? -eq 0 ]]; then
# if we found any FIXME entries in checked in files, fail on main
exit 1
else
exit 0
fi
shell: bash {0}