From ea53cdbe7c5b9b3b1f1a6065aa537f23cd37457d Mon Sep 17 00:00:00 2001 From: Simon Aronsson Date: Sun, 10 Jan 2021 12:42:54 +0100 Subject: [PATCH] add names to steps --- .github/workflows/pull-request.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 852bbcd..d09b4f2 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -8,6 +8,7 @@ on: jobs: lint: + name: Lint runs-on: ubuntu-latest steps: - name: Checkout @@ -18,11 +19,14 @@ jobs: uses: actions/setup-go@v2 with: go-version: 1.15.x - - name: Lint + - name: Install linter run: | go get -u golang.org/x/lint/golint + - name: Lint files + run: | golint -set_exit_status ./... test: + name: Test strategy: matrix: go-version: @@ -45,6 +49,7 @@ jobs: go test ./... -coverprofile coverage.out build: + name: Build runs-on: ubuntu-latest steps: - name: Checkout