Skip to content

Commit f4eeae2

Browse files
committed
Fixing CircleCI
1 parent aeeab30 commit f4eeae2

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

.circleci/config.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
# Check https://circleci.com/docs/language-go/ for more details
22
version: 2.1
3+
4+
orbs:
5+
go: circleci/[email protected]
6+
37
jobs:
48
build:
5-
executor:
6-
name: go/default
7-
tag: '1.24.2'
9+
docker:
10+
- image: cimg/go:1.23
811
steps:
912
- checkout
1013
- go/mod-download
@@ -14,3 +17,8 @@ jobs:
1417
race: true
1518
- run: go run makefile.go cover coverage.txt
1619
- run: bash <(curl -s https://codecov.io/bash)
20+
21+
workflows:
22+
main:
23+
jobs:
24+
- build

0 commit comments

Comments
 (0)