ci: fix always run ci on amd64 (#19)

Go still doesn't support `-race` in testing on arm64

Reviewed-on: #19
Co-authored-by: Timo Behrendt <t.behrendt@t00n.de>
Co-committed-by: Timo Behrendt <t.behrendt@t00n.de>
This commit was merged in pull request #19.
This commit is contained in:
2025-08-14 07:41:58 +02:00
committed by t.behrendt
parent 6a2b70d121
commit 997a8b335c

View File

@@ -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