Skip to content

Crystalfontz backports #62

Crystalfontz backports

Crystalfontz backports #62

Workflow file for this run

name: QA
on: pull_request
jobs:
qa:
name: Run QA checks
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Set up Node.js @latest
uses: actions/setup-node@v2
with:
node-version: 18
- name: Install the world
run: |
python -m pip install --upgrade pip setuptools wheel
pip install -r requirements_dev.txt
pip install sdbus
pip install -e .
- name: Run linting
run: |
flake8 ./plusdeck ./tests
- name: Run type checking
run: |
npx pyright@latest
- name: Run tests
run: |
pytest ./tests --ignore-glob='./tests/integration/**'