Skip to content

inform django-tables2 that some columns are not orderable #245

inform django-tables2 that some columns are not orderable

inform django-tables2 that some columns are not orderable #245

Workflow file for this run

---
name: "Run pre-commit"
on: # yamllint disable-line rule:truthy
pull_request:
push:
jobs:
pre-commit:
runs-on: "ubuntu-24.04"
steps:
- name: "Checkout code"
uses: "actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683" # v.4.2.2
- name: "Setup Python"
uses: "actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065" # v5.6.0
with:
python-version: "3.11"
- name: "Copy settings"
run: "cp src/bma/environment_settings.py.ci src/bma/environment_settings.py"
- name: "Run pre-commit"
uses: "pre-commit/action@2c7b3805fd2a0fd8c1884dcaebf91fc102a13ecd" # v3.0.1
...