Skip to content

Bump django-health-check from 3.18.2 to 3.18.3 in /api_server #473

Bump django-health-check from 3.18.2 to 3.18.3 in /api_server

Bump django-health-check from 3.18.2 to 3.18.3 in /api_server #473

Workflow file for this run

name: Styles check
on:
push:
branches:
- main
pull_request:
jobs:
style:
runs-on: ubuntu-latest
strategy:
max-parallel: 2
matrix:
python-version: ['3.10']
folder: ["client", "api_server"]
timeout-minutes: 30
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 tox
run: |
python -m pip install --upgrade pip
pip install tox
- name: Run lint check
env:
FOLDER: ${{ matrix.folder }}
run: tox -elint
- name: Run black check
env:
FOLDER: ${{ matrix.folder }}
run: tox -eblack