Skip to content

Commit 9e55f4a

Browse files
committed
fix: update ci script, fix missing submodule
1 parent e60b976 commit 9e55f4a

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

.github/workflows/release.yaml

+6-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
name: Set up Go
2727
uses: actions/setup-go@v2
2828
with:
29-
go-version: 1.18
29+
go-version: 1.19
3030
-
3131
name: Cache Go modules
3232
uses: actions/cache@v1
@@ -35,6 +35,11 @@ jobs:
3535
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
3636
restore-keys: |
3737
${{ runner.os }}-go-
38+
39+
-
40+
name: Prepare Submodule
41+
run: git submodule update --init
42+
3843
-
3944
name: Tests
4045
run: |

.github/workflows/test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ on:
99

1010
jobs:
1111

12-
build:
12+
test:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/checkout@v2
1616

1717
- name: Set up Go
1818
uses: actions/setup-go@v2
1919
with:
20-
go-version: 1.18
20+
go-version: 1.19
2121

2222
- name: Prepare Submodule
2323
run: git submodule update --init

0 commit comments

Comments
 (0)