Commit 984696d 1 parent 8ab8583 commit 984696d Copy full SHA for 984696d
File tree 3 files changed +15
-4
lines changed
3 files changed +15
-4
lines changed Original file line number Diff line number Diff line change @@ -21,10 +21,10 @@ jobs:
21
21
- name : Baseline for later scripted manual setup of go1.20
22
22
uses : actions/setup-go@v4
23
23
with :
24
- go-version : 1.19
24
+ go-version : 1.20.14
25
25
- name : allCovSh
26
26
run : tests/unittest/allcover.sh
27
- - uses : actions/upload-artifact@v3
27
+ - uses : actions/upload-artifact@v4
28
28
with :
29
29
name : coverage web page
30
30
path : /home/runner/go/allcover.htm
Original file line number Diff line number Diff line change 21
21
- name : Set up Go
22
22
uses : actions/setup-go@v3
23
23
with :
24
- go-version : 1.15
24
+ go-version : 1.20.14
25
25
- name : System Test
26
26
run : tests/unittest3/testall.sh
Original file line number Diff line number Diff line change @@ -16,11 +16,22 @@ jobs:
16
16
17
17
steps :
18
18
- uses : actions/checkout@v3
19
+
20
+ - name : Set up Docker Buildx
21
+ uses : docker/setup-buildx-action@v1
22
+
23
+ - name : Install Docker Compose
24
+ run : |
25
+ sudo curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
26
+ sudo chmod +x /usr/local/bin/docker-compose
27
+
28
+ - name : Verify Docker Compose installation
29
+ run : docker-compose --version
19
30
20
31
- name : Set up Go
21
32
uses : actions/setup-go@v4
22
33
with :
23
- go-version : 1.19
34
+ go-version : 1.20.14
24
35
25
36
- name : whereami
26
37
run : pwd
You can’t perform that action at this time.
0 commit comments