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 90cc910 + 1149470 commit d9b3396Copy full SHA for d9b3396
.github/workflows/integration.yaml
@@ -44,13 +44,6 @@ jobs:
44
ports:
45
- 4222:4222
46
47
- jetstream:
48
- image: bitnami/nats:latest
49
- env:
50
- NATS_EXTRA_ARGS: "--jetstream --port 4223"
51
- ports:
52
- - 4223:4223
53
-
54
amqp:
55
image: scholzj/qpid-dispatch
56
env:
@@ -89,7 +82,14 @@ jobs:
89
82
go-version: ${{ matrix.go-version }}
90
83
cache-dependency-path: v2/go.sum
91
84
id: go
92
85
+
86
+ - name: run jetstream
87
+ run: |
88
+ docker run --name nats-server -p 4223:4223 -d nats:2.12.0 -js
93
- name: Test
94
run: ./hack/integration-test.sh
95
+ - name: stop jetstream
+ run: docker stop nats-server
+ if: always()
0 commit comments