Skip to content

some updates about qaci (#21) #8

some updates about qaci (#21)

some updates about qaci (#21) #8

Workflow file for this run

name: type-check
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel setuptools
python -m pip install mypy types-setuptools
- name: Run type check
run: |
mypy \
--disallow-untyped-defs \
--disallow-incomplete-defs \
--check-untyped-defs \
--disallow-any-generics \
--no-implicit-optional \
--warn-unused-ignores \
--no-implicit-reexport \
--no-warn-no-return \
.