Skip to content

fix: probe was broken against the real driver — verified on 0.8.3 (v0… #4

fix: probe was broken against the real driver — verified on 0.8.3 (v0…

fix: probe was broken against the real driver — verified on 0.8.3 (v0… #4

Workflow file for this run

name: CI
# Lint + test. Runs on the org's Namespace Linux profile; a fork without the
# profile can override the NSC_RUNNER repo variable to a hosted runner.
on:
pull_request:
push:
branches: [main]
workflow_dispatch:
jobs:
test:
runs-on: ${{ vars.NSC_RUNNER || 'namespace-profile-protolabs-linux' }}
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dev deps
run: pip install -r requirements-dev.txt ruff
- name: Lint
run: ruff check . && ruff format --check .
- name: Test
run: pytest -q