diff --git a/.github/workflows/e2e-tests.yml b/.github/workflows/e2e-tests.yml new file mode 100644 index 00000000..4ba11132 --- /dev/null +++ b/.github/workflows/e2e-tests.yml @@ -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 \ No newline at end of file