Skip to content

Bump gitpython from 3.1.38 to 3.1.41 #87

Bump gitpython from 3.1.38 to 3.1.41

Bump gitpython from 3.1.38 to 3.1.41 #87

Workflow file for this run

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