Skip to content

updating to django 4.2 #962

updating to django 4.2

updating to django 4.2 #962

Workflow file for this run

name: black
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v1
with:
python-version: 3.9
- name: Install Black
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: run black
run: |
black . --check --diff