We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7e00bb commit 9fdaf56Copy full SHA for 9fdaf56
.github/workflows/test.yml
@@ -1,24 +1,11 @@
1
-on:
2
- push:
3
- pull_request:
4
- workflow_dispatch:
5
-
+on: pull_request
6
jobs:
7
build:
8
- name: Test
9
runs-on: ubuntu-latest
10
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
+ - uses: actions/setup-go@v2
+ with:
+ go-version: ^1.16
+ - uses: actions/checkout@v2
+ - run: make build
+ - run: make test
0 commit comments