diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e8938e5c..5090e260 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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