Skip to content

Commit 35b10f9

Browse files
committed
ci: run integration tests against oldstable
1 parent f2a2dbd commit 35b10f9

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/test.yml

+16
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,14 @@ jobs:
3838
run: |
3939
go build -v .
4040
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+
4149
- name: Run integration test (mainline)
4250
timeout-minutes: 10
4351
env:
@@ -54,6 +62,14 @@ jobs:
5462
source <(go run ./scripts/coderversion)
5563
CODER_VERSION="${CODER_STABLE_VERSION}" go test -v ./integration
5664
65+
- name: Run integration test (oldstable)
66+
timeout-minutes: 10
67+
env:
68+
CODER_IMAGE: "ghcr.io/coder/coder"
69+
run: |
70+
source <(go run ./scripts/coderversion)
71+
CODER_VERSION="${CODER_OLDSTABLE_VERSION}" go test -v ./integration
72+
5773
# run acceptance tests in a matrix with Terraform core versions
5874
test:
5975
name: Matrix Test

0 commit comments

Comments
 (0)