Skip to content

create django dc endpoint #66

create django dc endpoint

create django dc endpoint #66

Workflow file for this run

name: Check Code Formatting
on:
push:
branches:
- '*'
jobs:
format_check:
name: Check Formatting
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install black ruff
- name: Run Black
run: black --check .
- name: Run Ruff
run: ruff check .