when: - event: push - branch: exclude: [master, release/*] steps: - name: ruff image: python:3.12-alpine commands: - pip install ruff - ruff --output-format github . - name: mypy image: python:3.12-alpine commands: | pip install mypy mypy . runs_on: [ success, failure ]