]> ruderich.org/simon Gitweb - safcm/safcm.git/blob - ci/run
Add .gitlab-ci.yml
[safcm/safcm.git] / ci / run
1 #!/bin/sh
2
3 set -eu
4 set -x
5
6
7 PATH=$HOME/go/bin:$PATH
8 export PATH
9
10 make
11 go test -race ./...
12
13 # Additional static checks only run in CI
14 go get honnef.co/go/tools/cmd/staticcheck
15 staticcheck ./...