Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/integration-c.yml
Original file line numberDiff line numberDiff line change
Expand Up@@ -7,8 +7,8 @@ jobs:
- uses: actions/checkout@v4

- name: Run tests
run: docker-compose run integration_c
run: dockercompose run integration_c

- name: Cleanup
if: always()
run: docker-compose down
run: dockercompose down
4 changes: 2 additions & 2 deletions .github/workflows/integration-csharp.yml
Original file line numberDiff line numberDiff line change
Expand Up@@ -7,8 +7,8 @@ jobs:
- uses: actions/checkout@v4

- name: Run tests
run: docker-compose run integration_csharp
run: dockercompose run integration_csharp

- name: Cleanup
if: always()
run: docker-compose down
run: dockercompose down
4 changes: 2 additions & 2 deletions .github/workflows/integration-go.yml
Original file line numberDiff line numberDiff line change
Expand Up@@ -7,8 +7,8 @@ jobs:
- uses: actions/checkout@v4

- name: Run tests
run: docker-compose run integration_golang
run: dockercompose run integration_golang

- name: Cleanup
if: always()
run: docker-compose down
run: dockercompose down
4 changes: 2 additions & 2 deletions .github/workflows/integration-node.yml
Original file line numberDiff line numberDiff line change
Expand Up@@ -7,8 +7,8 @@ jobs:
- uses: actions/checkout@v4

- name: Run tests
run: docker-compose run integration_node
run: dockercompose run integration_node

- name: Cleanup
if: always()
run: docker-compose down
run: dockercompose down
4 changes: 2 additions & 2 deletions .github/workflows/integration-php.yml
Original file line numberDiff line numberDiff line change
Expand Up@@ -7,8 +7,8 @@ jobs:
- uses: actions/checkout@v4

- name: Run tests
run: docker-compose run integration_php
run: dockercompose run integration_php

- name: Cleanup
if: always()
run: docker-compose down
run: dockercompose down
4 changes: 2 additions & 2 deletions .github/workflows/integration-python.yml
Original file line numberDiff line numberDiff line change
Expand Up@@ -7,8 +7,8 @@ jobs:
- uses: actions/checkout@v4

- name: Run tests
run: docker-compose run integration_python
run: dockercompose run integration_python

- name: Cleanup
if: always()
run: docker-compose down
run: dockercompose down
4 changes: 2 additions & 2 deletions .github/workflows/integration-shell.yml
Original file line numberDiff line numberDiff line change
Expand Up@@ -7,8 +7,8 @@ jobs:
- uses: actions/checkout@v4

- name: Run tests
run: docker-compose run integration_shell
run: dockercompose run integration_shell

- name: Cleanup
if: always()
run: docker-compose down
run: dockercompose down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line numberDiff line numberDiff line change
Expand Up@@ -22,7 +22,7 @@ services:
- HTTPS_KEY_FILE=/https-cert/httpbin.org-key.pem
networks:
default:
# on the docker-compose network, this proxy will be aliased as
# on the `dockercompose` network, this proxy will be aliased as
# httpbin.org. To make this work with HTTPS, each integration test
# container needs to install the root CA contained in
# ./integrations/https-cert/rootCA.pem
Expand Down
Loading