Skip to content

refactor: version 0.9.0, use "model + utils + core" to organize the p… #42

refactor: version 0.9.0, use "model + utils + core" to organize the p…

refactor: version 0.9.0, use "model + utils + core" to organize the p… #42

Workflow file for this run

name: Python Linting
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff
- name: Run Ruff
run: ruff check .