Skip to content

Merge pull request #80 from mal-lang/sphinx-documentation #153

Merge pull request #80 from mal-lang/sphinx-documentation

Merge pull request #80 from mal-lang/sphinx-documentation #153

Workflow file for this run

name: MyPy maltoolbox
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r tests/requirements.txt
- name: Type checking with MyPy
run: |
pip install mypy
mypy . --ignore-missing-imports