From 2b62c525ec2585a24453edd68ebf46fcb01033be Mon Sep 17 00:00:00 2001 From: "ptsayli@gmail.com" Date: Fri, 7 Aug 2020 16:08:49 +0530 Subject: [PATCH 1/3] update go version to 1.14.7 --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 596c903d6f..25aa978f87 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/maticnetwork/bor -go 1.14 +go 1.14.7 require ( github.com/Azure/azure-storage-blob-go v0.7.0 From 580a4cbcf67117bb1185dc70bd8a805c77442033 Mon Sep 17 00:00:00 2001 From: "ptsayli@gmail.com" Date: Fri, 7 Aug 2020 16:11:10 +0530 Subject: [PATCH 2/3] add ci --- .github/workflows/ci.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000000..3f73cf44c0 --- /dev/null +++ b/.github/workflows/ci.yml @@ -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 From 5e5584759bae29a6b7a7929a0dd26cc305723909 Mon Sep 17 00:00:00 2001 From: "ptsayli@gmail.com" Date: Fri, 7 Aug 2020 16:53:53 +0530 Subject: [PATCH 3/3] fix build --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 25aa978f87..596c903d6f 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/maticnetwork/bor -go 1.14.7 +go 1.14 require ( github.com/Azure/azure-storage-blob-go v0.7.0