Skip to content

chore(deps): bump actions/setup-python from 5 to 7 #188

chore(deps): bump actions/setup-python from 5 to 7

chore(deps): bump actions/setup-python from 5 to 7 #188

Workflow file for this run

# SPDX-FileCopyrightText: 2024 German Aerospace Center (DLR) <https://dlr.de>
#
# SPDX-License-Identifier: MIT
name: Python tests (pytest)
on:
push:
branches:
- main
- develop
- releases/**
pull_request:
branches:
- main
- develop
permissions:
contents: read
jobs:
pytest:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v6
with:
persist-credentials: false
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: false
- name: Install Python dependencies
run: |
uv sync --group tests
- name: Test with pytest
run: |
uv run pytest