From 01188810c2667c2e5315ab2094f5ecfb380e2871 Mon Sep 17 00:00:00 2001 From: Clemens Schmid Date: Fri, 3 May 2024 15:52:23 +0200 Subject: [PATCH] somehow --no-run-tests is not available --- .github/workflows/release.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4ea5d8e72..9199eb0fc 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -44,11 +44,17 @@ jobs: if: ${{ runner.os == 'macOS' }} run: curl -sSL https://get.haskellstack.org/ | sh + - name: Set Git user identity for chronicle/timetravel tests + run: | + git config --global user.name "Test Name" + git config --global user.email "test@email.com" + shell: bash + - name: Build executable uses: freckle/stack-action@v5 id: stack with: - stack-build-arguments: --copy-bins --no-run-tests + stack-build-arguments: --copy-bins --fast --pedantic - name: Set binary path name id: binarypath