Skip to content

remove built docs

remove built docs #99

Workflow file for this run

name: Typecheck tests
on:
push:
paths:
# Run whenever this file is modified.
- '.github/workflows/typecheck.yml'
# Run whenever the SweetPea library is modified.
- 'sweetpea/**'
pull_request:
# Always run for pull requests.
jobs:
run:
name: ${{ matrix.os }} || Python ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-10.15, windows-latest]
python-version: ['3.7', '3.8', '3.9']
steps:
- name: Checkout SweetPea
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Update pip
run: python -m pip install --upgrade pip
- name: Set up SweetPea's Python package dependencies
run: pip install -r requirements.txt
- name: Run mypy typechecking
run: mypy --ignore-missing-imports sweetpea