Run e2e tests on kind cluster #17
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |