clang-format job: the flatpak CI image has no ECM on the host, so the configure step that generated .clang-format could never run. Commit the ECM-generated .clang-format instead (it is MIT, LICENSES/MIT.txt added), drop the container, pin clang-format 22.1.8 from PyPI to match the version the tree is formatted with, and reformat the sources to match. REUSE job: add the missing CC0-1.0 license text, a copyright line for the metainfo, REUSE.toml coverage for README/CONTRIBUTING/.gitignore, and REUSE-Ignore markers around CONTRIBUTING.md's SPDX example so the parser stops reading prose as a license declaration. reuse lint now passes locally (54/54 files). Co-Authored-By: Claude Fable 5 <[email protected]> Claude-Session: https://claude.ai/code/session_019FXfh48mASRsE1WEhy9jcM
40 lines
1.0 KiB
YAML
40 lines
1.0 KiB
YAML
# SPDX-FileCopyrightText: 2026 ToServeTheKing <[email protected]>
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
name: Lint
|
|
|
|
on:
|
|
pull_request: {}
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
reuse:
|
|
name: REUSE compliance
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
- name: REUSE Compliance Check
|
|
uses: fsfe/reuse-action@v3
|
|
|
|
clang-format:
|
|
name: clang-format
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
# The .clang-format at the repo root is the one ECM's KDEClangFormat
|
|
# generates at configure time, committed so this check needs no KDE
|
|
# stack. Pinned to the clang-format major used to format the tree -
|
|
# output drifts between major versions.
|
|
- name: Install clang-format
|
|
run: pipx install clang-format==22.1.8
|
|
|
|
- name: Check formatting
|
|
run: |
|
|
find src autotests -name '*.h' -o -name '*.cpp' | \
|
|
xargs clang-format --dry-run --Werror
|