Skip to content

Commit

Permalink
Merge pull request #179 from zheng1/actions
Browse files Browse the repository at this point in the history
Create go.yml
  • Loading branch information
zheng1 authored May 24, 2021
2 parents 68a2166 + 605c50c commit 731ea1d
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Go

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:
strategy:
matrix:
go: [1.13]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: go get -u golang.org/x/lint/golint
- run: make check
- run: make release
- run: make unit-runtime-go-${{ matrix.go }}

0 comments on commit 731ea1d

Please sign in to comment.