Skip to content

Added isort in github action #6

Added isort in github action

Added isort in github action #6

Workflow file for this run

name: Auto Linting and Formatting
on:
push:
branches:
- master
jobs:
linting:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff
pip install isort
- name: Format with ruff
run: ruff format *.py
- name: Lint with ruff
run: ruff check --fix *.py
- name: isort packages for python files
run: isort models.py otypes.py utils.py
- name: Remove ruff cache
run: rm -rf .ruff_cache
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Apply Linting & Formatting Fixes
# - name: Remove Linting Branch
# run: |
# if git rev-parse --verify linting >/dev/null 2>&1; then
# git push origin --delete linting
# fi