From 50d651c2f96f615c4f38d5b504523fdaf602782c Mon Sep 17 00:00:00 2001 From: Michael Smith Date: Mon, 14 Apr 2025 13:57:02 +0000 Subject: [PATCH] fix: update CI step --- .github/workflows/ci.yaml | 6 ++++-- .gitignore | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 4f9c9f95..c27a1529 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -16,5 +16,7 @@ jobs: uses: actions/setup-go@v5 with: go-version: "1.23.2" - - name: Validate - run: go run ./scripts/validate-contributor-readmes/main.go + - name: Validate contributors + run: go build ./scripts/contributors && ./contributors + - name: Remove build file artifact + run: rm ./contributors diff --git a/.gitignore b/.gitignore index 7d2bfb25..5f109fd9 100644 --- a/.gitignore +++ b/.gitignore @@ -136,4 +136,4 @@ dist .pnp.* # Script output -/validate-contributor-readmes +/contributors