File tree 10 files changed +159
-0
lines changed
actions/setup-go-and-deps
10 files changed +159
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Setup Go and Dependencies
2
+ description : ' Setup Go and Dependencies'
3
+
4
+ inputs :
5
+ go-version-file :
6
+ description : ' The path to the go.mod file'
7
+ required : false
8
+ default : ' go.mod'
9
+
10
+ runs :
11
+ using : " composite"
12
+ steps :
13
+ - name : Checkout code
14
+ uses : actions/checkout@v4
15
+ - name : Setup Go
16
+ uses : actions/setup-go@v5
17
+ with :
18
+ go-version-file : ${{ inputs.go-version-file }}
19
+
20
+ - name : Install Dependencies
21
+ shell : bash
22
+ run : go mod tidy
Original file line number Diff line number Diff line change
1
+ on : [workflow_call]
2
+ defaults :
3
+ run :
4
+ shell : bash
5
+
6
+ jobs :
7
+ build :
8
+ runs-on : ubuntu-latest
9
+ steps :
10
+ - name : Checkout code
11
+ uses : actions/checkout@v4
12
+ - name : Go and dependencies
13
+ uses : ./.github/actions/setup-go-and-deps
14
+ - name : build
15
+ run : CGO_ENABLED=0 go build -o main .
16
+
17
+ - name : upload builded artifact
18
+ uses : actions/upload-artifact@v4
19
+ with :
20
+ name : main-${{github.sha}}
21
+ path : main
Original file line number Diff line number Diff line change
1
+ on : [workflow_call]
2
+ defaults :
3
+ run :
4
+ shell : bash
5
+
6
+ jobs :
7
+ deps :
8
+ runs-on : ubuntu-latest
9
+ steps :
10
+ - name : Checkout code
11
+ uses : actions/checkout@v4
12
+
13
+ - name : Go and dependencies
14
+ uses : ./.github/actions/setup-go-and-deps
Original file line number Diff line number Diff line change
1
+ on : [workflow_call]
2
+ defaults :
3
+ run :
4
+ shell : bash
5
+
6
+ jobs :
7
+ deploy :
8
+ runs-on : ubuntu-latest
9
+ steps :
10
+ - name : download builded artifact
11
+ uses : actions/download-artifact@v4
12
+ with :
13
+ name : main-${{github.sha}}
14
+
15
+ - name : Deploy
16
+ run : |
17
+ echo "Dummy Deploy..."
Original file line number Diff line number Diff line change
1
+ on : [workflow_call]
2
+ defaults :
3
+ run :
4
+ shell : bash
5
+
6
+ jobs :
7
+ lint :
8
+ runs-on : ubuntu-latest
9
+ steps :
10
+ - uses : actions/checkout@v4
11
+ - name : golang ci lint
12
+ uses : golangci/golangci-lint-action@v6
13
+ continue-on-error : true
14
+ with :
15
+ version : latest
16
+ args : --timeout 10m
17
+
18
+
Original file line number Diff line number Diff line change
1
+ run-name : main workflow
2
+ on :
3
+ push :
4
+ branches :
5
+ - main
6
+ - master
7
+ - develop
8
+ pull_request :
9
+ branches :
10
+ - main
11
+ - master
12
+ - develop
13
+ defaults :
14
+ run :
15
+ shell : bash
16
+
17
+ jobs :
18
+ pre :
19
+ uses : ./.github/workflows/pre.yml
20
+ deps :
21
+ needs : pre
22
+ uses : ./.github/workflows/dependencies.yml
23
+ lint :
24
+ needs : deps
25
+ uses : ./.github/workflows/lint.yml
26
+ test :
27
+ needs : deps
28
+ uses : ./.github/workflows/test.yml
29
+ build :
30
+ needs : [test, lint]
31
+ uses : ./.github/workflows/build.yml
32
+ deploy :
33
+ needs : build
34
+ uses : ./.github/workflows/deployment.yml
Original file line number Diff line number Diff line change
1
+ on : [workflow_call]
2
+
3
+ defaults :
4
+ run :
5
+ shell : bash
6
+
7
+ jobs :
8
+ pre :
9
+ runs-on : ubuntu-latest
10
+ steps :
11
+ - uses : actions/checkout@v4
12
+ - name : pre script
13
+ run : |
14
+ echo "Running pre script"
Original file line number Diff line number Diff line change
1
+ on : [workflow_call]
2
+ defaults :
3
+ run :
4
+ shell : bash
5
+
6
+ jobs :
7
+ test :
8
+ runs-on : ubuntu-latest
9
+ steps :
10
+ - name : Checkout code
11
+ uses : actions/checkout@v4
12
+ - name : Go and dependencies
13
+ uses : ./.github/actions/setup-go-and-deps
14
+ - name : test
15
+ run : go test -v ./...
Original file line number Diff line number Diff line change @@ -21,3 +21,5 @@ go-base
21
21
22
22
# Output of the go coverage tool, specifically when used with LiteIDE
23
23
* .out
24
+
25
+ main
Original file line number Diff line number Diff line change
1
+ golang 1.18
2
+ golangci-lint 1.59.1
You can’t perform that action at this time.
0 commit comments