Add integration with github ci

This commit is contained in:
Kishan B 2022-03-30 13:34:33 +05:30
parent d80867952d
commit 7b38160fcf
1 changed files with 21 additions and 0 deletions

21
.github/workflows/build.yml vendored Normal file
View File

@ -0,0 +1,21 @@
name: Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '>=1.17.0'
- name: Test
run: |
go mod download
go test -v ./...