Skip to content

Bump actions/setup-python from 4 to 5 #24

Bump actions/setup-python from 4 to 5

Bump actions/setup-python from 4 to 5 #24

Workflow file for this run

name: Mypy testing
on:
push:
jobs:
mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Get Python Version from File
id: python_version
run: echo "version=$(cat VERSION)" >> $GITHUB_OUTPUT
- uses: actions/setup-python@v5
with:
python-version: ${{ steps.python_version.outputs.version }}
- name: Install Dependencies
run: make install
- name: Test Typing
run: make mypy_check