File tree Expand file tree Collapse file tree 1 file changed +17
-13
lines changed Expand file tree Collapse file tree 1 file changed +17
-13
lines changed Original file line number Diff line number Diff line change 1
- name : Go
2
- on : [push]
3
- jobs :
1
+ name : sigsci-module-golang
2
+ on :
3
+ push :
4
+ branches : [ BuildOnGithubActions ]
4
5
6
+ jobs :
5
7
build :
6
8
name : Build
7
9
runs-on : ubuntu-latest
8
10
steps :
9
-
11
+ - uses : aws-actions/configure-aws-credentials@v1
12
+ with :
13
+ aws-access-key-id : ${{ secrets.SIGSCI_PROD_ACCESS_KEY_ID }}
14
+ aws-secret-access-key : ${{ secrets.SIGSCI_PROD_SECRET_ACCESS_KEY }}
15
+ aws-region : us-west-2
16
+ - name : Check out code into the Go module directory
17
+ uses : actions/checkout@v2
10
18
- name : Set up Go 1.12
11
19
uses : actions/setup-go@v1
12
20
with :
13
21
go-version : 1.12
14
22
id : go
15
-
16
- - name : Check out code into the Go module directory
17
- uses : actions/checkout@v1
18
-
19
- - name : Build
20
- run : go build -v .
21
-
22
- - name : Test
23
- run : go test -v .
23
+ - name : Run make script
24
+ run : |
25
+ ./make.sh
26
+ env :
27
+ PROD_ID : ${{ secrets.SIGSCI_PROD_CANONICAL_ID }}
You can’t perform that action at this time.
0 commit comments