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 5, 2024
1 parent 36a451a commit 425c160
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: End-to-end demo with key generation

on:
pull_request:
branches: [ main ]

jobs:
build:
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

0 comments on commit 425c160

Please sign in to comment.