Handle two exceptions causing sync_patron_activity job to fail (PP-1838) #11416
Workflow file for this run
This file contains 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@v4 | |
- name: Set up Python 🐍 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ env.PYTHON_VERSION }} | |
- name: Install Poetry 🎸 | |
uses: ./.github/actions/poetry | |
with: | |
cache: true | |
cache-restore-only: true | |
- name: Install Python Packages 📦 | |
run: poetry install --without ci --no-root | |
- name: Run MyPy 🪄 | |
run: poetry run mypy |