Skip to content

Commit f494c0a

Browse files
authored
Merge pull request #1497 from merico-dev/new-dtm
Fix The CI Error With Wrong Golang Version
2 parents 7c411c4 + 28e76b2 commit f494c0a

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

.github/workflows/ci.yaml

+2-7
Original file line numberDiff line numberDiff line change
@@ -7,22 +7,17 @@ on:
77
pull_request:
88
branches:
99
- main
10-
1110
jobs:
1211
build:
1312
runs-on: ubuntu-latest
1413
steps:
14+
- uses: actions/checkout@v3
1515
- name: Set up Go
1616
uses: actions/setup-go@v4
1717
with:
18-
go-version: 1.20
18+
go-version: "1.20.3"
1919
cache: true
20-
21-
- name: Check out code
22-
uses: actions/checkout@v3
23-
2420
- name: Run tests
2521
run: go test -v ./...
26-
2722
- name: Build project
2823
run: make build

0 commit comments

Comments
 (0)