Skip to content

Commit

Permalink
add names to steps
Browse files Browse the repository at this point in the history
  • Loading branch information
simskij committed Jan 10, 2021
1 parent 668e7a1 commit ea53cdb
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:

jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand All @@ -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:
Expand All @@ -45,6 +49,7 @@ jobs:
go test ./... -coverprofile coverage.out
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down

0 comments on commit ea53cdb

Please sign in to comment.