Skip to content

Commit

Permalink
Simplify test.yml (#157)
Browse files Browse the repository at this point in the history
  • Loading branch information
0x2b3bfa0 authored Jul 4, 2021
1 parent d7e00bb commit 9fdaf56
Showing 1 changed file with 7 additions and 20 deletions.
27 changes: 7 additions & 20 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,24 +1,11 @@
on:
push:
pull_request:
workflow_dispatch:

on: pull_request
jobs:
build:
name: Test
runs-on: ubuntu-latest
steps:

- name: Install
uses: actions/setup-go@v2
with:
go-version: ^1.16

- name: Checkout
uses: actions/checkout@v2

- name: Build
run: make build

- name: Test
run: make test
- uses: actions/setup-go@v2
with:
go-version: ^1.16
- uses: actions/checkout@v2
- run: make build
- run: make test

0 comments on commit 9fdaf56

Please sign in to comment.