Skip to content
This repository has been archived by the owner on Feb 11, 2025. It is now read-only.

Create a place to store user preferences in the database for this app #179

Create a place to store user preferences in the database for this app

Create a place to store user preferences in the database for this app #179

Workflow file for this run

name: Verify formatting
on:
push:
branches: main
pull_request:
jobs:
ruff:
runs-on: ubuntu-latest
name: Verify Python formatting
steps:
- uses: actions/checkout@v4
- uses: astral-sh/ruff-action@v1
with:
args: "format --check"
changed-files: 'true'
djlint:
runs-on: ubuntu-latest
name: Check HTML formatting
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
- name: Install dependencies
run: |
pip install -U pip
pip install djlint
- name: Format HTML
run: djlint . --check