Skip to content

Remove remnants of helper functions that are no longer used or implemented #8

Remove remnants of helper functions that are no longer used or implemented

Remove remnants of helper functions that are no longer used or implemented #8

Workflow file for this run

name: Run checks for pre-commit
on:
push:
branches:
- main
- develop
pull_request:
branches:
- "*"
jobs:
precommit:
name: pre-commit checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: '3.10'
check-latest: true
- name: Install pre-commit
run: pip install pre-commit
- name: Run checks
run: pre-commit run -a -v
- name: Git status
if: always()
run: git status
- name: Full diff
if: always()
run: git diff