Merge pull request #85 from maticnetwork/update-go-1.14.7

add CI
This commit is contained in:
Jaynti Kanani 2020-08-07 17:26:59 +05:30 committed by GitHub
commit 1fd375eabf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

15
.github/workflows/ci.yml vendored Normal file
View file

@ -0,0 +1,15 @@
name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Go
uses: actions/setup-go@v1
with:
go-version: 1.14.7
- name: "Build binaries"
run: make all
- name: "Run tests"
run: make test