Skip to content

Ensure error handling logic is displaying the issue on the UI #63

Ensure error handling logic is displaying the issue on the UI

Ensure error handling logic is displaying the issue on the UI #63

Workflow file for this run

name: CI
on: [push]
jobs:
code-formating:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
with:
fetch-depth: 1
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r api/requirements.txt
- name: black code formatting check
run: |
pip install -U "black==22.3.0"
black --check .