Skip to content

Rebuilding docs requirements tree to get the builds working again. #555

Rebuilding docs requirements tree to get the builds working again.

Rebuilding docs requirements tree to get the builds working again. #555

Workflow file for this run

name: Type Check (ignore failures for now)
on:
push:
branches: [ master ]
paths:
- 'exporters/**'
- 'pyproject.toml'
- '.github/workflows/typecheck.yml'
- 'Makefile'
pull_request:
branches: [ master ]
paths:
- 'exporters/**'
- 'pyproject.toml'
- '.github/workflows/typecheck.yml'
- 'Makefile'
jobs:
typecheck:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.9', '3.10', '3.11']
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: |
**/requirements*.txt
pyproject.toml
- name: Install dependencies
run: make dev-env
- name: Install node
run: sudo apt-get install nodejs
- name: Type Check
continue-on-error: true
run: make typecheck