Clean up test workflow step names
This commit is contained in:
parent
efaccc4ded
commit
a26bd9ab4d
1 changed files with 4 additions and 4 deletions
8
.github/workflows/docker-image.yml
vendored
8
.github/workflows/docker-image.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue