Skip to content

Mixed improvements

Mixed improvements #24

Workflow file for this run

name: Pytype Type Check
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install poetry
poetry install
- name: Run pytype
run: poetry run pytype .