Skip to content

Commit

Permalink
chore: add simple ci to run end-to-end test
Browse files Browse the repository at this point in the history
This commit adds a simple ci to run the end-to-end demo with
key-genaration.
  • Loading branch information
fd0r committed Aug 6, 2024
1 parent 36a451a commit 1ba7f4d
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: End-to-end demo with key generation

on:
pull_request:
branches: [ main ]

jobs:
test-with-keygen:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Run make command
run:
echo "KEY_GEN=true" > .env

make e2e-test

test-without-keygen:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Run make command
run:
echo "KEY_GEN=false" > .env

make e2e-test

0 comments on commit 1ba7f4d

Please sign in to comment.