Skip to content

Merge pull request #19 from flip-dots/add_linting_tools #4

Merge pull request #19 from flip-dots/add_linting_tools

Merge pull request #19 from flip-dots/add_linting_tools #4

Workflow file for this run

name: Type check
on: [push]
jobs:
mypy:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.13"]
steps:
- uses: actions/checkout@v5
- 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 -r requirements_dev.txt
- name: Install library
run: |
python -m pip install .
- name: Run mypy
run: |
mypy SolixBLE tests --strict --namespace-packages --explicit-package-bases