docs (core) : adding MINIO_APP_USER_ACCESS_KEY and MINIO_APP_USER_SEC… #99
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] | |
jobs: | |
apply_mypy: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.8"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Display Python Version | |
run: python -c "import sys; print(sys.version)" | |
- name: Updrade Pip | |
run: python -m pip install --upgrade pip | |
- name: Install MyPy Types-PyYAML | |
run: pip install mypy types-PyYAML types-python-dateutil | |
- name: Analysing the code with MyPy | |
run: mypy . |