Skip to content

upgrade to artifact@v4 #9

upgrade to artifact@v4

upgrade to artifact@v4 #9

Workflow file for this run

name: mypy
on:
- push
- pull_request
jobs:
mypy:
strategy:
fail-fast: false
matrix:
python-version:
- "3.10"
- "3.12"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mypy
pip install .
- name: Typecheck with mypy
run: |
mypy --ignore-missing-imports ocpsvg