Skip to content

[ENH] Condensing approaches #9

[ENH] Condensing approaches

[ENH] Condensing approaches #9

Workflow file for this run

name: PR Typecheck
on:
push:
branches:
- main
pull_request:
branches:
- main
paths:
- "tsml_eval/**"
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
typecheck:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install tsml-eval, dependencies and mypy
uses: nick-fields/retry@v3
with:
timeout_minutes: 30
max_attempts: 3
command: python -m pip install .[all_extras,unstable_extras,dev] mypy
- name: Show dependencies
run: python -m pip list
- name: Run mypy typecheck
run: mypy tsml_eval/