Skip to content

Commit

Permalink
feat: add e2e tests in CI/CD
Browse files Browse the repository at this point in the history
  • Loading branch information
shifty11 committed Jan 15, 2024
1 parent 2e5c860 commit 064b072
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/e2e-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: e2e tests

on:
- pull_request

jobs:
test:
runs-on: ubuntu-latest
steps:
# Checkout the repository
- name: Check out repository code
uses: actions/checkout@v4
# Setup Golang
- name: 🐿 Setup Golang
uses: actions/setup-go@v4
with:
go-version-file: 'e2etest/go.mod'
# Run e2e tests
- name: Run e2e tests
run: go test ./...
working-directory: e2etest

0 comments on commit 064b072

Please sign in to comment.