Skip to content

clean up imports using ruff #378

clean up imports using ruff

clean up imports using ruff #378

Workflow file for this run

name: ⚙️ Build
on: [ push ]
jobs:
build:
name: ⚙️🧪 Build and test
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12" ]
steps:
- name: Checkout 🚚
uses: actions/[email protected]
with:
fetch-depth: 1
- name: Set up Python ${{ matrix.python-version }} 🐍
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies ⚙️
run: |
python -m pip install --upgrade pip
pip install -U -e .[testing]
- name: Test 🧪
run: |
python -m unittest discover