remote/exporter: apply ruff format fixes for 2025 style guide #1225
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.9', '3.10', '3.11', '3.12', '3.13'] | |
uses: ./.github/workflows/reusable-unit-tests.yml | |
secrets: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
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 |