From 3eff3df0ae8b18c86cdafad47a739b96f457041d Mon Sep 17 00:00:00 2001 From: Timo Behrendt Date: Tue, 20 May 2025 20:45:31 +0200 Subject: [PATCH] ci: fix always run ci on amd64 --- .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 eeffe47..7f51f5f 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -8,7 +8,9 @@ on: jobs: test: - runs-on: ubuntu-latest + runs-on: + - ubuntu-latest + - linux_amd64 steps: - uses: actions/checkout@v4 - uses: actions/setup-go@v5