Skip to content

Fix/modify test

Fix/modify test #1

Workflow file for this run

name: Pre-commit Check
on:
pull_request:
branches:
- main
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.10
- name: Install dependencies
run: |
pip install pre-commit
- name: Run pre-commit
run: pre-commit run --all-files