Skip to content

Commit 4cd6ef9

Browse files
authored
Merge pull request kosmos-io#239 from lvtaococo/feature_e2e_workflows
E2E: Integrate end-to-end workflows
2 parents d91c84c + ef9107d commit 4cd6ef9

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/e2e.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: E2e Workflow
2+
on:
3+
push:
4+
pull_request:
5+
jobs:
6+
e2e:
7+
name: E2e test
8+
needs: build
9+
runs-on: ubuntu-22.04
10+
steps:
11+
- name: Checkout code
12+
uses: actions/checkout@v3
13+
with:
14+
fetch-depth: 0
15+
- name: Run e2e test
16+
run: ./hack/rune2e.sh
17+
- name: Upload logs
18+
uses: actions/upload-artifact@v3
19+
if: failure()
20+
with:
21+
name: kosmos-e2e-logs-${{ github.run_id }}
22+
path: ${{ github.workspace }}/e2e-test/logs-*

0 commit comments

Comments
 (0)