The repository has no .github/workflows/ directory, so no continuous-integration step ever runs.
The immediate consequence is that the contradiction already tracked in #79 — LICENSES/MIT.txt contains proprietary all-rights-reserved text while REUSE.toml declares SPDX-License-Identifier = MIT — was not caught when the file was committed. A one-step CI job running reuse lint on every push would have flagged it instantly.
A second gap is link rot: the Google Play and Huawei AppGallery URLs in README.md can break silently with no automated check.
A minimal fix is a single GitHub Actions workflow that runs reuse lint on push and pull_request; optionally add a Markdown link-checker step alongside it.
The repository has no
.github/workflows/directory, so no continuous-integration step ever runs.The immediate consequence is that the contradiction already tracked in #79 —
LICENSES/MIT.txtcontains proprietary all-rights-reserved text whileREUSE.tomldeclaresSPDX-License-Identifier = MIT— was not caught when the file was committed. A one-step CI job runningreuse linton every push would have flagged it instantly.A second gap is link rot: the Google Play and Huawei AppGallery URLs in
README.mdcan break silently with no automated check.A minimal fix is a single GitHub Actions workflow that runs
reuse lintonpushandpull_request; optionally add a Markdown link-checker step alongside it.