From 997a8b335c4618d475ffe597c9536545c863f299 Mon Sep 17 00:00:00 2001 From: Timo Behrendt Date: Thu, 14 Aug 2025 07:41:58 +0200 Subject: [PATCH] ci: fix always run ci on amd64 (#19) Go still doesn't support `-race` in testing on arm64 Reviewed-on: https://gitea.t000-n.de/t.behrendt/tracebasedlogsampler/pulls/19 Co-authored-by: Timo Behrendt Co-committed-by: Timo Behrendt --- .gitea/workflows/ci.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 583ec19..60b4c8b 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -7,7 +7,9 @@ on: jobs: test: - runs-on: ubuntu-latest + runs-on: + - ubuntu-latest + - linux_amd64 steps: - uses: actions/checkout@v4 - uses: actions/setup-go@v5