Bump boto3-stubs from 1.27.0 to 1.28.10 #1152
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.9 | |
jobs: | |
mypy: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- uses: actions/checkout@v3 | |
- 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 |