From 0917c72b4b459250c29db94052d50b383caa57dc Mon Sep 17 00:00:00 2001 From: Daniel J Walsh Date: Thu, 17 Oct 2024 16:10:27 -0400 Subject: [PATCH] split build from validate in Makefile --- .github/workflows/ci.yml | 1 + Makefile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fe96523..1a32b49 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,6 +42,7 @@ jobs: - name: run bats run: | + make build make validate make bats diff --git a/Makefile b/Makefile index 607cd68..5105d53 100644 --- a/Makefile +++ b/Makefile @@ -96,7 +96,7 @@ codespell: codespell --dictionary=- -w .PHONY: validate -validate: build codespell lint +validate: codespell lint ifeq ($(OS),Linux) hack/man-page-checker hack/xref-helpmsgs-manpages