go-hep.org/x/hep@v0.38.1/.gitlab-ci.yml (about) 1 before_script: 2 - . /opt/root/setup-groot.sh 3 - export PATH=$HOME/go/bin:$PATH 4 - export CGO_ENABLED=1 5 - export GOPROXY="https://proxy.golang.org" 6 - export TAGS="-tags=ci" 7 - export COVERAGE="-coverpkg=go-hep.org/x/hep/..." 8 9 stages: 10 - build 11 12 go-1.25: 13 image: codeberg.org/go-hep/groot-docker:6.36.02 14 stage: build 15 script: 16 - root.exe --version 17 - GOARCH=amd64 go install -v $TAGS ./... 18 - go run ./ci/run-tests.go $TAGS -race $COVERAGE 19 - go vet $TAGS ./... 20 - go install honnef.co/go/tools/cmd/staticcheck@latest 21 - staticcheck ./... 22