From 5edad44e8da2899d1c48a958a0d094cd32a4c827 Mon Sep 17 00:00:00 2001 From: Martin Tournoij Date: Wed, 23 Feb 2022 12:38:48 +0100 Subject: [PATCH] Test ARM + 32bit So e.g. https://github.com/BurntSushi/toml/pull/347 is caught. Figure I might as well use ARM instead of i386. --- .github/workflows/test.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f4c663e3..4f4c9852 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -24,7 +24,11 @@ { "name": "Test", "run": "go test -v ./..." - } + }, + { + "name": "Test arm 32bit", + "run": "GOARCH=arm go test -v ./..." + }, ] } }