feat: per-channel z-offset for laser autofocus #3748
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: Lint | |
| on: [push, pull_request] | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| # NOTE(imo): This 3.13 python version is just for black to be able to use the use_pyproject option. We | |
| # don't actually require 3.13 in our code! | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.13" | |
| # Pin to specific SHA to avoid breaking changes from @stable updates | |
| - uses: psf/black@782e5605c86aab56be6f905da10dcd3e463fd9c2 | |
| with: | |
| options: "--config software/pyproject.toml --check --verbose" | |
| src: "./software/" |