Skip to content

update sliced ct

update sliced ct #118

Workflow file for this run

name: Mypy Type Check
on:
push:
branches:
- main
paths:
- '**.py'
pull_request:
paths:
- '**.py'
jobs:
mypy-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Install mypy
run: |
python -m pip install --upgrade pip
pip install mypy
- name: Run mypy
run: |
mypy .