Skip to content

bump version 0.3.5 -> 0.3.6 #230

bump version 0.3.5 -> 0.3.6

bump version 0.3.5 -> 0.3.6 #230

Workflow file for this run

name: Run isort
on:
push:
pull_request:
merge_group:
jobs:
isort:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: 'pip'
cache-dependency-path: setup.py
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install isort
pip install -e .
- name: Reformat the code with isort
run: |
isort . --diff