Skip to content

Commit

Permalink
feat(e2e): run e2e tests as actions (#608)
Browse files Browse the repository at this point in the history
  • Loading branch information
kengou authored Oct 29, 2024
1 parent 90cf2d1 commit 31f4d46
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/ci-e2e-test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: E2E Test
on:
workflow_dispatch: {}

jobs:
e2e:
runs-on: "default"
strategy:
fail-fast: false
matrix:
k8s-version: ["v1.29.9", "v1.30.5", "v1.31.1"]
steps:
- uses: cloudoperators/common/workflows/e2e@main
with:
kubernetes-version: ${{ matrix.k8s-version }}

0 comments on commit 31f4d46

Please sign in to comment.