This repository has been archived by the owner on Feb 11, 2025. It is now read-only.
Set default timestamp field when this is an optional field in a bulk action form #160
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint codebase | |
on: | |
push: | |
branches: main | |
pull_request: | |
jobs: | |
ruff: | |
runs-on: ubuntu-latest | |
name: Critical lint Python | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: astral-sh/ruff-action@v1 | |
with: | |
changed-files: 'true' | |
djlint: | |
runs-on: ubuntu-latest | |
name: Lint HTML | |
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: Lint | |
run: djlint --lint . |