fix: probe was broken against the real driver — verified on 0.8.3 (v0… #4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |