Skip to content

Bump rich from 13.7.1 to 13.9.3 #28

Bump rich from 13.7.1 to 13.9.3

Bump rich from 13.7.1 to 13.9.3 #28

Workflow file for this run

# SPDX-FileCopyrightText: 2024 German Aerospace Center (DLR) <https://dlr.de>
#
# SPDX-License-Identifier: MIT
name: Static typechecking (mypy)
on:
push:
branches:
- main
- develop
- releases/**
pull_request:
branches:
- main
- develop
permissions:
contents: read
jobs:
mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.8
uses: actions/setup-python@v5
with:
python-version: 3.8
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[tests]
- name: Static typechecking with mypy
uses: tsuyoshicho/action-mypy@v5