Skip to content

Merge pull request #177 from bretterer/dependabot/uv/bleak-2.1.1 #420

Merge pull request #177 from bretterer/dependabot/uv/bleak-2.1.1

Merge pull request #177 from bretterer/dependabot/uv/bleak-2.1.1 #420

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
- "3.14"
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Install uv and set the Python version
uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python-version }}
version: "0.10.9"
- name: Install Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Run linting
run: |
uv run ruff check .
uv run ruff format . --check
- name: Run mypy
run: uv run mypy src/rivian
- name: Test with pytest
run: uv run pytest