Skip to content

Merge pull request #4 from Aharoni-Lab/feat/led-status-display #29

Merge pull request #4 from Aharoni-Lab/feat/led-status-display

Merge pull request #4 from Aharoni-Lab/feat/led-status-display #29

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -e ".[dev]"
- name: Ruff check
run: ruff check src/ tests/
- name: Ruff format check
run: ruff format --check src/ tests/
- name: Mypy
run: mypy src/hilbench/ --ignore-missing-imports
- name: Pytest
run: pytest --cov=hilbench --cov-report=term-missing -m "not hardware"