config (core) : adding MINIO_APP_USER_ACCESS_KEY and MINIO_APP_USER_S… #100
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: Ruff | |
on: [push] | |
jobs: | |
apply_ruff: | |
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 Ruff | |
run: pip install ruff | |
- name: Analysing the code with Ruff | |
run: ruff check . |