Skip to content

Rewrite and clarify AT command descriptions #29

Rewrite and clarify AT command descriptions

Rewrite and clarify AT command descriptions #29

Workflow file for this run

name: CI Ruff
on:
push:
paths:
- "obdii/**"
- "**/*.py"
- "!docs/**/*.py"
- "!tests/**/*.py"
- "requirements.txt"
- "pyproject.toml"
branches: [ main ]
pull_request:
paths:
- "obdii/**"
- "**/*.py"
- "!tests/**/*.py"
- "!docs/**/*.py"
- "requirements.txt"
- "pyproject.toml"
branches: [ main ]
workflow_dispatch:
jobs:
run-tests:
name: Run Ruff 📐
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.x"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install -e .[dev]
- name: Ruff Lint Check
run: |
ruff check --output-format=github obdii examples
- name: Ruff Format Check
run: |
ruff format --check obdii examples