Skip to content

Run tests also for python 3.11-12 #15

Run tests also for python 3.11-12

Run tests also for python 3.11-12 #15

Workflow file for this run

name: Typing
on:
push:
branches:
- master
- 'version-**'
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
jobs:
check-style:
timeout-minutes: 15
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.12']
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
cache-dependency-path: |
setup.py
pyproject.toml
- name: Install res2df with types dependencies
run: |
pip install ".[types]"
- name: Run mypy
run: |
mypy res2df