We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e60b976 commit 9e55f4aCopy full SHA for 9e55f4a
.github/workflows/release.yaml
@@ -26,7 +26,7 @@ jobs:
26
name: Set up Go
27
uses: actions/setup-go@v2
28
with:
29
- go-version: 1.18
+ go-version: 1.19
30
-
31
name: Cache Go modules
32
uses: actions/cache@v1
@@ -35,6 +35,11 @@ jobs:
35
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
36
restore-keys: |
37
${{ runner.os }}-go-
38
+
39
+ -
40
+ name: Prepare Submodule
41
+ run: git submodule update --init
42
43
44
name: Tests
45
run: |
.github/workflows/test.yml
@@ -9,15 +9,15 @@ on:
9
10
jobs:
11
12
- build:
+ test:
13
runs-on: ubuntu-latest
14
steps:
15
- uses: actions/checkout@v2
16
17
- name: Set up Go
18
19
20
21
22
- name: Prepare Submodule
23
run: git submodule update --init
0 commit comments