Skip to content

Commit

Permalink
fix example tests workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Eguzki Astiz Lezaun <[email protected]>
  • Loading branch information
eguzki committed Nov 29, 2024
1 parent 678b160 commit b98f16c
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: e2e tests
name: Example tests

on:
push:
Expand All @@ -10,7 +10,7 @@ on:
- '*'
jobs:
basic:
name: Basic integration test
name: Basic example test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -29,12 +29,12 @@ jobs:
args: --target wasm32-unknown-unknown
- name: Run docker compose
run: |
docker compose -f ./e2e/basic/docker-compose.yaml run start_services
docker compose -f ./examples/basic/docker-compose.yaml run start_services
- name: Execute tests in the running services
run: |
make -f ./e2e/basic/Makefile test
make -f ./examples/basic/Makefile test
remote_address:
name: Remote address integration test
name: Remote address example test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -53,7 +53,7 @@ jobs:
args: --target wasm32-unknown-unknown
- name: Run docker compose
run: |
docker compose -f ./e2e/remote-address/docker-compose.yaml run start_services
docker compose -f ./examples/remote-address/docker-compose.yaml run start_services
- name: Execute tests in the running services
run: |
make -f ./e2e/remote-address/Makefile test
make -f ./examples/remote-address/Makefile test

0 comments on commit b98f16c

Please sign in to comment.