Skip to content

Commit

Permalink
Add build test
Browse files Browse the repository at this point in the history
  • Loading branch information
shimastripe committed Nov 14, 2021
1 parent 4620ef3 commit d67f2f7
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Build

on: push

jobs:

build:
strategy:
matrix:
go-version: [1.16.x, 1.17.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2

- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}

- name: Deps
run: |
make deps
- name: Build Test
run: |
make install

0 comments on commit d67f2f7

Please sign in to comment.