forked from mirror/backoff
Add integration with github ci
This commit is contained in:
parent
d80867952d
commit
7b38160fcf
|
@ -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 ./...
|
Loading…
Reference in New Issue