Skip to content

fix(deps): update actions/checkout action to v4 #135

fix(deps): update actions/checkout action to v4

fix(deps): update actions/checkout action to v4 #135

Workflow file for this run

---
on:
push: {}
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v3
- name: setup
run: make setup
- name: Set skips on ci run
run: |
if [[ $GITHUB_REF_PROTECTED =~ "true" ]]; then
echo "SKIP=no-commit-to-branch" >> $GITHUB_ENV
fi
- name: run pre-commit
run: pre-commit run --show-diff-on-failure --all-files