Clean up test workflow step names

This commit is contained in:
Marc Di Luzio 2020-05-30 23:21:40 +01:00
parent efaccc4ded
commit a26bd9ab4d

View file

@ -19,10 +19,10 @@ jobs:
go-version: ^1.13
id: go
- name: Check out code into the Go module directory
- name: Check out repo
uses: actions/checkout@v2
- name: Get dependencies
- name: Get go dependencies
run: |
go get -v -t -d ./...
if [ -f Gopkg.toml ]; then
@ -33,7 +33,7 @@ jobs:
- name: Build with go
run: go build -v ./...
- name: Unit Tests
- name: Run go unit tests
run: go test -v ./...
- name: Build docker
@ -42,7 +42,7 @@ jobs:
- name: Deploy docker-compose
run: docker-compose up --build --detach
- name: Run integration tests
- name: Run go integration tests
run: go test ./... -tags integration
- name: Take down docker-compose