bump #92
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: Python package | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: | |
- '3.11' | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install poetry | |
poetry install | |
- name: isort | |
run: poetry run isort --check-only supervisor_react | |
- name: black | |
run: poetry run black --check supervisor_react | |
- name: flake8 | |
run: poetry run flake8 supervisor_react | |
- name: ruff | |
run: poetry run ruff supervisor_react | |
- name: bandit | |
run: poetry run bandit -c pyproject.toml -r supervisor_react | |
- name: pylint | |
run: poetry run pylint supervisor_react | |
- name: mypy | |
run: poetry run mypy supervisor_react |