We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08aa455 commit 884a5feCopy full SHA for 884a5fe
1 file changed
.cirrus.yml
@@ -1,10 +1,14 @@
1
task:
2
name: Lint
3
4
- container:
5
- image: golangci/golangci-lint:latest
+ macos_instance:
+ image: ghcr.io/cirruslabs/macos-runner:sonoma
6
7
- script: golangci-lint run -v --timeout 4m0s --out-format json > golangci.json
+ install_script:
8
+ - brew install golangci-lint
9
+
10
+ lint_script:
11
+ - golangci-lint run -v --timeout 4m0s --out-format json > golangci.json
12
13
always:
14
report_artifacts:
@@ -14,7 +18,11 @@ task:
18
15
19
name: Build
16
20
17
- image: golang:latest
21
22
23
24
25
+ - brew install go
26
- script: make build
27
+ build_script:
28
+ - make build
0 commit comments