There was an error while loading. Please reload this page.
1 parent 83c3ca1 commit df1ad97Copy full SHA for df1ad97
1 file changed
.github/workflows/go.yml
@@ -14,13 +14,18 @@ jobs:
14
build:
15
runs-on: ubuntu-latest
16
steps:
17
- - uses: actions/checkout@v3
+ - name: Checkout with Submodules
18
+ uses: actions/checkout@v4
19
+ with:
20
+ submodules: recursive
21
+ fetch-depth: 0
22
23
- name: Set up Go
- uses: actions/setup-go@v3
24
+ uses: actions/setup-go@v5
25
with:
26
go-version: 1.24
-
27
+ cache: true
28
+
29
- name: Build API Gateway
30
working-directory: ./persys-gateway
31
run: |
@@ -79,4 +84,4 @@ jobs:
79
84
working-directory: ./persysctl
80
85
81
86
go mod download
82
- cd cmd && go build -o main
87
+ cd cmd && go build -o main
0 commit comments