We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2a2dbd commit 35b10f9Copy full SHA for 35b10f9
.github/workflows/test.yml
@@ -38,6 +38,14 @@ jobs:
38
run: |
39
go build -v .
40
41
+ - name: Run integration test (devel)
42
+ timeout-minutes: 10
43
+ env:
44
+ CODER_IMAGE: "ghcr.io/coder/coder-preview"
45
+ CODER_VERSION: "latest"
46
+ run: |
47
+ go test -v ./integration
48
+
49
- name: Run integration test (mainline)
50
timeout-minutes: 10
51
env:
@@ -54,6 +62,14 @@ jobs:
54
62
source <(go run ./scripts/coderversion)
55
63
CODER_VERSION="${CODER_STABLE_VERSION}" go test -v ./integration
56
64
65
+ - name: Run integration test (oldstable)
66
67
68
+ CODER_IMAGE: "ghcr.io/coder/coder"
69
70
+ source <(go run ./scripts/coderversion)
71
+ CODER_VERSION="${CODER_OLDSTABLE_VERSION}" go test -v ./integration
72
57
73
# run acceptance tests in a matrix with Terraform core versions
58
74
test:
59
75
name: Matrix Test
0 commit comments