Skip to content

Create a local development stack #58

Create a local development stack

Create a local development stack #58

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 .