Skip to content

Commit

Permalink
e2e: parallel requests: github action
Browse files Browse the repository at this point in the history
Signed-off-by: Eguzki Astiz Lezaun <eastizle@redhat.com>
  • Loading branch information
eguzki committed Oct 28, 2024
1 parent 49af546 commit d203caf
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,27 @@ jobs:
- name: Execute tests in the running services
run: |
make -f ./e2e/missing-cluster/Makefile test
parallel-requests:
name: Parallel requests integration test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
target: wasm32-unknown-unknown
- uses: arduino/setup-protoc@v1
with:
version: '3.x'
- uses: actions-rs/cargo@v1
with:
command: build
args: --target wasm32-unknown-unknown
- name: Run docker compose
run: |
docker compose -f ./e2e/parallel-requests/docker-compose.yaml run start_services
- name: Execute tests in the running services
run: |
make -f ./e2e/parallel-requests/Makefile test

0 comments on commit d203caf

Please sign in to comment.