Skip to content

Remove unused imports. #7

Remove unused imports.

Remove unused imports. #7

Workflow file for this run

name: Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ['3.10']
exclude:
# Reduce matrix size by excluding some combinations
- os: macos-latest
python-version: '3.10'
- os: windows-latest
python-version: '3.10'
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry==2.0.1
poetry install
- name: Run linters
run: |
poetry run black bleak_bumble/ tests/
poetry run isort --profile black --check-only bleak_bumble/ tests/
- name: Run tests
run: |
poetry run pytest tests/ -v