summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/build.yml31
1 files changed, 31 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
new file mode 100644
index 0000000..29bd97d
--- /dev/null
+++ b/.github/workflows/build.yml
@@ -0,0 +1,31 @@
+name: Go build
+
+on:
+ pull_request:
+ branches:
+ - 'master'
+ push:
+ branches:
+ - 'master'
+
+jobs:
+ build-go:
+ runs-on: ubuntu-20.04
+
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v3
+
+ - name: Setup Go
+ uses: actions/setup-go@v3
+ with:
+ go-version: 1.15
+
+ - name: Go Get
+ run: go get -d -u
+
+ - name: Go Build
+ run: go build -v
+
+ - name: Go Test
+ run: go test -v