We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d66b7f1 commit ff2c68aCopy full SHA for ff2c68a
.github/workflows/build.yaml
@@ -0,0 +1,24 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches: [ master ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - name: Set up Go 1.16
14
+ uses: actions/setup-go@v2
15
+ with:
16
+ go-version: ^1.16
17
18
+ - name: Check out code into the Go module directory
19
+ uses: actions/checkout@v2
20
21
+ - name: Regenerate and Test
22
+ run: |
23
+ make clean fmt
24
+ make generate
Makefile
@@ -8,7 +8,7 @@ endif
.DEFAULT_GOAL := all
.PHONY: all
-all: test
+all: clean fmt test
.PHONY: test
test:
go.mod
@@ -1,3 +1,3 @@
module github.com/zencoder/go-dash/v3
-go 1.13
+go 1.16
0 commit comments