github: bump ubuntu runner images to 24.04 #1087
Workflow file for this run
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.8', '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 |