From c64160da6ef2a4df544d4b286d5a5820e9e27a02 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Sat, 17 Apr 2021 08:36:05 +0200 Subject: [PATCH] ci: also run tests with strict umask --- ci/run | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/ci/run b/ci/run index 01ee682..30b22a1 100755 --- a/ci/run +++ b/ci/run @@ -10,6 +10,13 @@ export PATH make make test +# Strict umask +umask 077 +rm -rf * +git checkout . +make +make test + # Additional static checks only run in CI go get honnef.co/go/tools/cmd/staticcheck staticcheck ./... -- 2.44.1