From c028e280940fe9cd42aa10bc5d1ba796866f370c Mon Sep 17 00:00:00 2001 From: Friedrich Gonzalez Date: Thu, 9 May 2024 17:37:48 +0200 Subject: [PATCH] Try again Signed-off-by: Friedrich Gonzalez --- .github/workflows/ci.yaml | 4 ++++ Makefile | 4 +++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index d803897..f612db1 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -27,6 +27,8 @@ jobs: steps: - uses: actions/checkout@v4 name: Checkout + with: + fetch-depth: 0 - name: "Build mixin" run: make build-mixin @@ -36,6 +38,8 @@ jobs: steps: - uses: actions/checkout@v4 name: Checkout + with: + fetch-depth: 0 - name: "Test readme" run: make test-readme diff --git a/Makefile b/Makefile index c94e80e..99f37ef 100644 --- a/Makefile +++ b/Makefile @@ -47,7 +47,9 @@ build-mixin: test-readme: test-readme/azure test-readme/gcs test-readme/s3 test-readme/%: - @./scripts/test-readme.sh $@ + @./scripts/test-readme.sh $@; \ + RESULT=$$?; \ + exit $$RESULT clean-white-noise: @$(FIND) . -type f -regextype posix-extended -regex '.*(md|libsonnet)' -print | \