Skip to content

Commit

Permalink
feat: Add E2E test to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
EthenNotEthan committed Jun 6, 2024
1 parent c26c709 commit b0f0fa9
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,22 @@ jobs:
uses: securego/gosec@master
with:
args: ./...

e2e-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.21

- name: Install project dependencies
run: |
go mod download
- name: Run E2E Tests
env:
SIGNER_PRIVATE_KEY: ${{ secrets.SIGNER_PRIVATE_KEY }}
run: |
SIGNER_PRIVATE_KEY=$SIGNER_PRIVATE_KEY make e2e-test

0 comments on commit b0f0fa9

Please sign in to comment.