chore(state-manager): update state manager python version & update dependencies #12
This file contains 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: "Build and test all cmake targets" | |
on: | |
pull_request: | |
push: | |
branches: | |
- "*" | |
workflow_dispatch: | |
jobs: | |
non-executable-workflow: | |
strategy: | |
matrix: | |
target: [bootloader, can, common, eeprom, i2c, motor-control, sensors, spi] | |
name: ${{ matrix.target }} Build and Test | |
uses: ./.github/workflows/non-executable-workflow.yaml | |
with: | |
target: ${{ matrix.target }} | |
secrets: inherit | |
executable-workflow: | |
strategy: | |
matrix: | |
target: [gantry, gripper, head, pipettes] | |
name: ${{ matrix.target }} Build and Test | |
uses: ./.github/workflows/executable-workflow.yaml | |
with: | |
target: ${{ matrix.target }} | |
secrets: inherit |