Merge pull request #1526 from jluebbe/usb-hid-multiuser #1124
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: unit tests | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
push-pr-unit-tests: | |
name: unit tests | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ['3.9', '3.10', '3.11', '3.12'] | |
uses: ./.github/workflows/reusable-unit-tests.yml | |
with: | |
python-version: ${{ matrix.python-version }} | |
push-pr-unit-tests-docker: | |
name: Docker Unit Tests | |
uses: ./.github/workflows/reusable-unit-tests-docker.yml | |
build-and-release: | |
name: Release to Pypi | |
needs: push-pr-unit-tests | |
if: github.event_name == 'push' && github.repository == 'labgrid-project/labgrid' | |
uses: ./.github/workflows/build-and-release.yml | |
secrets: inherit |