Skip to content

docs (core) : adding MINIO_APP_USER_ACCESS_KEY and MINIO_APP_USER_SEC… #99

docs (core) : adding MINIO_APP_USER_ACCESS_KEY and MINIO_APP_USER_SEC…

docs (core) : adding MINIO_APP_USER_ACCESS_KEY and MINIO_APP_USER_SEC… #99

Workflow file for this run

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 .