aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-05-05 09:51:18 -0500
committerCraig Jennings <c@cjennings.net>2026-05-05 09:51:18 -0500
commit8db6357d2e2f912ca382b259ea2675cf9058511e (patch)
tree83cb9fe27d1332bd3c5d2d09ab84973425598dc5 /.github/workflows/ci.yml
parent18bad1aa33e25873b7f30b9d42adde071a63bad9 (diff)
downloadchime-8db6357d2e2f912ca382b259ea2675cf9058511e.tar.gz
chime-8db6357d2e2f912ca382b259ea2675cf9058511e.zip
ci: flip lint job from advisory to required
The lint backlog is now zero — all three checks (package-lint, checkdoc, elisp-lint) are clean. Drop `continue-on-error: true' from each step so a regression actually fails the build instead of quietly turning the job green.
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r--.github/workflows/ci.yml7
1 files changed, 1 insertions, 6 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 6ad5618..7089066 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -38,7 +38,7 @@ jobs:
run: make test-all
lint:
- name: Lint (advisory)
+ name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
@@ -56,18 +56,13 @@ jobs:
- name: Install dependencies
run: eask install-deps --dev
- # Lint output is informational while the MELPA-prep backlog is being
- # worked through. Tighten to required once that backlog is clear.
- name: package-lint
- continue-on-error: true
run: eask lint package
- name: checkdoc
- continue-on-error: true
run: eask lint checkdoc
- name: elisp-lint
- continue-on-error: true
run: make lint
coverage: