]> ruderich.org/simon Gitweb - safcm/safcm.git/blobdiff - ci/run
ci: also run tests with strict umask
[safcm/safcm.git] / ci / run
diff --git a/ci/run b/ci/run
index 7ec5f161ed205a30a1f15afdedbba92d3d0784a0..30b22a1b8b11f58bd6784bc4f3fb08d02ee24bb3 100755 (executable)
--- a/ci/run
+++ b/ci/run
@@ -8,7 +8,14 @@ PATH=$HOME/go/bin:$PATH
 export PATH
 
 make
-go test -race ./...
+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