Skip to content

Commit 8baa453

Browse files
authored
Test with go 1.20 and 1.21, lint with 1.21 (#568)
1 parent 27addec commit 8baa453

File tree

1 file changed

+18
-4
lines changed

1 file changed

+18
-4
lines changed

.circleci/config.yml

+18-4
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,19 @@ jobs:
3232
build-1-19:
3333
working_directory: ~/repo
3434
docker:
35-
- image: cimg/go:1.19
35+
- image: cimg/go:1.18
36+
steps: *simple_job_steps
37+
38+
build-1-20:
39+
working_directory: ~/repo
40+
docker:
41+
- image: cimg/go:1.18
42+
steps: *simple_job_steps
43+
44+
build-1-21:
45+
working_directory: ~/repo
46+
docker:
47+
- image: cimg/go:1.21
3648
steps:
3749
- checkout
3850
- restore_cache:
@@ -54,10 +66,10 @@ jobs:
5466
#- store_test_results:
5567
# path: /tmp/test-reports
5668

57-
build-1-19-u:
69+
build-1-21-u:
5870
working_directory: ~/repo
5971
docker:
60-
- image: cimg/go:1.19
72+
- image: cimg/go:1.21
6173
steps:
6274
- checkout
6375
- run:
@@ -75,4 +87,6 @@ workflows:
7587
# - build-windows
7688
- build-1-18
7789
- build-1-19
78-
- build-1-19-u
90+
- build-1-20
91+
- build-1-21
92+
- build-1-21-u

0 commit comments

Comments
 (0)