Skip to content

chore(firmware): bump version to 1.4 for the filter-wheel home fix #3771

chore(firmware): bump version to 1.4 for the filter-wheel home fix

chore(firmware): bump version to 1.4 for the filter-wheel home fix #3771

Workflow file for this run

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/"