Skip to content
This repository was archived by the owner on Aug 12, 2025. It is now read-only.

Commit 08c0337

Browse files
authored
Add a workflow for running the e2e tests
This workflow will run e2e tests using artifacts previously built.
1 parent 45bf382 commit 08c0337

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/pr-post.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Pull Request E2E
2+
on:
3+
workflow_run:
4+
workflows: ["Pull Request Validation"]
5+
types: [completed]
6+
jobs:
7+
e2e-smoketest:
8+
name: E2E Smoketest
9+
runs-on: ubuntu-latest
10+
if: ${{ github.event.workflow_run.conclusion == 'success' }}
11+
steps:
12+
- name: checkout
13+
uses: actions/[email protected]
14+
- uses: actions/setup-go@v2
15+
with:
16+
go-version: '1.16' # The Go version to download (if necessary) and use.
17+
- name: download e2e artifacts
18+
uses: actions/download-artifact@v2
19+
with:
20+
name: e2e-artifacts
21+
path: /tmp/e2e-artifacts
22+
- name: Display structure of downloaded files
23+
run: ls -R
24+
working-directory: /tmp/e2e-artifacts

0 commit comments

Comments
 (0)