Skip to content

Commit

Permalink
Merge pull request #18 from cce/add-gha
Browse files Browse the repository at this point in the history
CI: add github actions build
  • Loading branch information
cce authored May 17, 2022
2 parents 32df92c + 4ebd56f commit a326f91
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: "Build"
on:
push:
branches: [ master ]
pull_request:
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v3
with:
go-version: '1.17.9'
- run: make test

0 comments on commit a326f91

Please sign in to comment.