Skip to content

Changed all instances of Python 3.8.x and replaced with 3.9 (#400) #644

Changed all instances of Python 3.8.x and replaced with 3.9 (#400)

Changed all instances of Python 3.8.x and replaced with 3.9 (#400) #644

Workflow file for this run

name: "mypy check"
on:
push:
branches:
- develop
pull_request:
branches:
- develop
jobs:
static-type-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v3
with:
python-version: '3.8'
- run: pip install mypy
- name: Run mypy check on all files
run: mypy --strict .