Skip to content

feat(laser-af): step to baseline around Set Reference when live offse… #3745

feat(laser-af): step to baseline around Set Reference when live offse…

feat(laser-af): step to baseline around Set Reference when live offse… #3745

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