Skip to content

Commit 9fdaf56

Browse files
authored
Simplify test.yml (#157)
1 parent d7e00bb commit 9fdaf56

File tree

1 file changed

+7
-20
lines changed

1 file changed

+7
-20
lines changed

.github/workflows/test.yml

Lines changed: 7 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,11 @@
1-
on:
2-
push:
3-
pull_request:
4-
workflow_dispatch:
5-
1+
on: pull_request
62
jobs:
73
build:
8-
name: Test
94
runs-on: ubuntu-latest
105
steps:
11-
12-
- name: Install
13-
uses: actions/setup-go@v2
14-
with:
15-
go-version: ^1.16
16-
17-
- name: Checkout
18-
uses: actions/checkout@v2
19-
20-
- name: Build
21-
run: make build
22-
23-
- name: Test
24-
run: make test
6+
- uses: actions/setup-go@v2
7+
with:
8+
go-version: ^1.16
9+
- uses: actions/checkout@v2
10+
- run: make build
11+
- run: make test

0 commit comments

Comments
 (0)