Skip to content

Commit 4e61c3e

Browse files
committed
Fix syntax
1 parent 101bcc6 commit 4e61c3e

File tree

2 files changed

+14
-15
lines changed

2 files changed

+14
-15
lines changed

.github/workflows/changelog.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ jobs:
1010
steps:
1111
- name: Checkout
1212
uses: actions/checkout@v1
13+
1314
- name: Pull request merged
1415
if: git hub.event.pull_request.merged == true
1516
uses: ./.github/actions/changelog

.github/workflows/go.yml

Lines changed: 13 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,23 @@
11
name: Go
22
on: [push]
33
jobs:
4-
54
build:
65
name: Build
76
runs-on: ubuntu-latest
87
steps:
8+
- name: Set up Go 1.13
9+
uses: actions/setup-go@v1
10+
with:
11+
go-version: 1.13
12+
id: go
913

10-
- name: Set up Go 1.13
11-
uses: actions/setup-go@v1
12-
with:
13-
go-version: 1.13
14-
id: go
15-
16-
- name: Check out code into the Go module directory
17-
uses: actions/checkout@v1
14+
- name: Check out code into the Go module directory
15+
uses: actions/checkout@v1
1816

19-
- name: Verify dependencies
20-
run: go mod verify
17+
- name: Verify dependencies
18+
run: go mod verify
2119

22-
- name: Build
23-
run: |
24-
go test ./...
25-
go build -v .
20+
- name: Build
21+
run: |
22+
go test ./...
23+
go build -v .

0 commit comments

Comments
 (0)