feat(robot-server, api): Implement RobotServerPyroResource providing proxies of server assets #27975
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: 'hardware-testing testing protocols' | |
| on: | |
| # Run on any change to the api directory | |
| pull_request: | |
| paths: | |
| - 'api/**' | |
| - 'hardware-testing/**' | |
| - 'Makefile' | |
| push: | |
| paths: | |
| - 'api/**' | |
| - 'hardware-testing/**' | |
| - 'Makefile' | |
| - '.github/workflows/hardware-testing-protocols.yaml' | |
| branches: | |
| - 'edge' | |
| - 'release' | |
| - '*hotfix*' | |
| create: | |
| tags: | |
| - 'v*' | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-${{ github.ref_name != 'edge' || github.run_id}}-${{ github.ref_type != 'tag' || github.run_id }} | |
| cancel-in-progress: true | |
| defaults: | |
| run: | |
| shell: bash | |
| jobs: | |
| lint-test: | |
| name: 'hardware-testing protocols' | |
| timeout-minutes: 20 | |
| runs-on: 'ubuntu-24.04' | |
| steps: | |
| - name: Checkout opentrons repo | |
| uses: 'actions/checkout@v4' | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Node | |
| uses: 'actions/setup-node@v6' | |
| with: | |
| node-version: '22.22.0' | |
| - name: Setup Project | |
| uses: './.github/actions/python/setup-uv' | |
| with: | |
| project: 'hardware-testing' | |
| python-version: '3.12' | |
| - name: Test-Integration | |
| run: make -C hardware-testing test-integration |