Skip to content
This repository has been archived by the owner on Jan 24, 2024. It is now read-only.

Fix guard errs

Fix guard errs #907

Workflow file for this run

name: Precommit
on:
push:
branches: [develop]
pull_request:
workflow_dispatch:
jobs:
Test:
runs-on: ubuntu-latest
name: Run unit tests and examples
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install python
uses: actions/setup-python@v4
with:
# Run pre-commit on the lowest supported python version
python-version: '3.8'
- name: Install dependencies
run: |
pip install pre-commit
- name: Precommit Check
run : pre-commit run --all-files