Skip to content

PP-356 Test run scripts during CI (#1359) #6650

PP-356 Test run scripts during CI (#1359)

PP-356 Test run scripts during CI (#1359) #6650

Workflow file for this run

name: Mypy (Type check)
on: [push, pull_request]
env:
PYTHON_VERSION: 3.9
jobs:
mypy:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- name: Set up Python 🐍
uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install Poetry 🎸
uses: ./.github/actions/poetry
- name: Install OS Packages 🧰
run: |
sudo apt-get update
sudo apt-get install --yes libxmlsec1-dev libxml2-dev
- name: Install Python Packages 📦
run: poetry install --without ci
- name: Run MyPy 🪄
run: poetry run mypy