Skip to content

Update project structure #1

Update project structure

Update project structure #1

Workflow file for this run

name: Run Tests
on:
pull_request:
workflow_dispatch:
jobs:
pre-commit:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.10, 3.11, 3.12, 3.13]
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install pre-commit
- name: Run Pre-Commit Hooks
run: |
pre-commit install
pre-commit run --all-files