Move test into the Makefile

This commit is contained in:
Marc Di Luzio 2020-06-07 23:20:39 +01:00
parent 175c66cddf
commit 4e6bf385ad
3 changed files with 12 additions and 20 deletions

View file

@ -34,7 +34,7 @@ jobs:
fi
- name: Build and Test
run: ./script/test.sh
run: make test
- name: Upload test coverage result
uses: actions/upload-artifact@v1

View file

@ -9,6 +9,16 @@ install:
go install -ldflags="-X 'github.com/mdiluz/rove/pkg/version.Version=${VERSION}'" ./...
test:
./script/test.sh
go mod download
go build ./...
# Run the server and shut it down again to ensure our docker-compose works
ROVE_ARGS="--quit 1" docker-compose up --build --exit-code-from=rove-server --abort-on-container-exit
# Run tests with coverage
go test -v ./... -cover -coverprofile=/tmp/c.out -count 1
# Convert the coverage data to html
go tool cover -html=/tmp/c.out -o /tmp/coverage.html
.PHONY: install test

View file

@ -1,18 +0,0 @@
#!/bin/bash
set -e
cd "$(dirname "$0")"
cd ..
set -x
# Check we can build everything
go mod download
go build ./...
# Run the server and shut it down again to ensure our docker-compose works
ROVE_ARGS="--quit 1" docker-compose up --build --exit-code-from=rove-server --abort-on-container-exit
# Run tests with coverage
go test -v ./... -cover -coverprofile=/tmp/c.out -count 1
# Convert the coverage data to html
go tool cover -html=/tmp/c.out -o /tmp/coverage.html