Bump setuptools from 75.2.0 to 75.5.0 #1203
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 | |
on: [push, pull_request, fork] | |
jobs: | |
mypy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.9 | |
uses: actions/[email protected] | |
with: | |
python-version: 3.9 | |
- name: Set up Poetry | |
run: pip install poetry | |
- name: Install dependencies | |
run: poetry install --with dev | |
- name: Run mypy | |
run: poetry run mypy mdopt |