File tree 5 files changed +51
-44
lines changed
5 files changed +51
-44
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ name : Linters
2
+
3
+ on : [pull_request]
4
+
5
+ jobs :
6
+ validate-commits :
7
+ runs-on : ubuntu-latest
8
+ steps :
9
+ - name : Check out code into the Go module directory
10
+ uses : actions/checkout@v1
11
+ - name : Commitsar check
12
+ uses : docker://outillage/commitsar
Original file line number Diff line number Diff line change
1
+ name : Release
2
+
3
+ on :
4
+ push :
5
+ tags :
6
+ - " v*"
7
+
8
+ jobs :
9
+ release :
10
+ runs-on : ubuntu-latest
11
+ steps :
12
+ - name : Check out code into the Go module directory
13
+ uses : actions/checkout@v1
14
+ - name : Release Notary
15
+ uses : docker://outillage/release-notary
16
+ env :
17
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change
1
+ name : Test
2
+
3
+ on : [pull_request]
4
+
5
+ jobs :
6
+ go :
7
+ runs-on : ubuntu-latest
8
+
9
+ strategy :
10
+ matrix :
11
+ go-version : [1.12.x, 1.13.x]
12
+
13
+ steps :
14
+ - name : Install Go
15
+ uses : actions/setup-go@v1
16
+ with :
17
+ go-version : ${{ matrix.go-version }}
18
+ - name : Check out code into the Go module directory
19
+ uses : actions/checkout@v1
20
+ - name : Test
21
+ run : make ci
Original file line number Diff line number Diff line change @@ -14,4 +14,4 @@ go-mod-tidy:
14
14
git diff-index --quiet HEAD
15
15
16
16
# Run all tests & linters in CI
17
- ci : test go-mod-tidy
17
+ ci : setup-test test go-mod-tidy
You can’t perform that action at this time.
0 commit comments