Move test into the Makefile
This commit is contained in:
parent
175c66cddf
commit
4e6bf385ad
3 changed files with 12 additions and 20 deletions
2
.github/workflows/docker-image.yml
vendored
2
.github/workflows/docker-image.yml
vendored
|
@ -34,7 +34,7 @@ jobs:
|
||||||
fi
|
fi
|
||||||
|
|
||||||
- name: Build and Test
|
- name: Build and Test
|
||||||
run: ./script/test.sh
|
run: make test
|
||||||
|
|
||||||
- name: Upload test coverage result
|
- name: Upload test coverage result
|
||||||
uses: actions/upload-artifact@v1
|
uses: actions/upload-artifact@v1
|
||||||
|
|
12
Makefile
12
Makefile
|
@ -9,6 +9,16 @@ install:
|
||||||
go install -ldflags="-X 'github.com/mdiluz/rove/pkg/version.Version=${VERSION}'" ./...
|
go install -ldflags="-X 'github.com/mdiluz/rove/pkg/version.Version=${VERSION}'" ./...
|
||||||
|
|
||||||
test:
|
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
|
.PHONY: install test
|
|
@ -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
|
|
Loading…
Add table
Add a link
Reference in a new issue