We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8a53948 + 47c7a48 commit 54f8305Copy full SHA for 54f8305
codefresh.yml
@@ -11,14 +11,27 @@ steps:
11
type: git-clone
12
repo: "${{CF_REPO_OWNER}}/${{CF_REPO_NAME}}"
13
revision: "${{CF_REVISION}}"
14
- git: cf_github
+ git: github
15
16
go_fmt:
17
title: 'Formatting'
18
stage: test
19
- image: goreleaser/goreleaser:v1.6.3
+ image: goreleaser/goreleaser:v1.11.3
20
commands:
21
- go fmt
22
+
23
+ go_test:
24
+ title: 'Run tests'
25
+ stage: test
26
27
+ environment:
28
+ - TF_ACC="test"
29
+ commands:
30
+ - go test -v ./...
31
+ retry:
32
+ maxAttempts: 3
33
+ delay: 5
34
+ exponentialFactor: 2
35
36
prepare_env_vars:
37
title: 'Preparing environment variables...'
0 commit comments