Ekir 688 update accessibility data validation (#280) #1565
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Mypy (Type check) | |
| on: [push, pull_request] | |
| env: | |
| PYTHON_VERSION: "3.10" | |
| jobs: | |
| mypy: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Python 🐍 | |
| uses: actions/setup-python@v6 | |
| 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 |