Skip to content

Commit

Permalink
add GHA workflow for e2e testing
Browse files Browse the repository at this point in the history
  • Loading branch information
ushitora-anqou committed Mar 17, 2024
1 parent 8012d27 commit 7fceab7
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/e2e_test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Run e2e tests

on:
pull_request:
workflow_dispatch:

permissions: read-all

jobs:
e2e-test:
runs-on: ubuntu-latest
steps:
- name: Checkout tree
uses: actions/checkout@v4
- name: Set-up OCaml 4.14.1
uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: "4.14.1"
- run: opam install . --deps-only --with-test
- run: make -C e2e start-ngrok
- run: opam exec -- make -C e2e create-cluster
# - name: Setup tmate session
# uses: mxschmitt/action-tmate@v3
- run: opam exec -- make -C e2e test

0 comments on commit 7fceab7

Please sign in to comment.