From fe9c11dfe3bd27737379009393e55533d4579d9d Mon Sep 17 00:00:00 2001 From: Elias Naur Date: Thu, 19 Nov 2020 18:10:33 +0100 Subject: [PATCH] .builds: move go fmt check last The check is important, but shouldn't block the other tests from running. Signed-off-by: Elias Naur --- .builds/linux.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.builds/linux.yml b/.builds/linux.yml index 7fe1c9b0..1124c19d 100644 --- a/.builds/linux.yml +++ b/.builds/linux.yml @@ -54,9 +54,6 @@ tasks: - test_example: | cd gio/example go test -race ./... - - check_gofmt: | - cd gio - test -z "$(gofmt -s -l .)" - install_jdk8: | curl -so jdk.deb "https://cdn.azul.com/zulu/bin/zulu8.42.0.21-ca-jdk8.0.232-linux_amd64.deb" sudo apt install -y -f ./jdk.deb @@ -78,3 +75,6 @@ tasks: - test_android: | cd gio/example gogio -target android ./kitchen + - check_gofmt: | + cd gio + test -z "$(gofmt -s -l .)"