mirror of
https://github.com/submariner-io/submariner-charts.git
synced 2026-09-20 22:40:34 +00:00
Signed-off-by: Miguel Angel Ajo <majopela@redhat.com>
28 lines
575 B
YAML
28 lines
575 B
YAML
---
|
|
name: End to End Tests
|
|
|
|
on:
|
|
pull_request:
|
|
|
|
jobs:
|
|
e2e:
|
|
name: E2E
|
|
timeout-minutes: 30
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
globalnet: ['', 'globalnet']
|
|
steps:
|
|
- name: Check out the repository
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Run E2E deployment and tests
|
|
uses: submariner-io/shipyard/gh-actions/e2e@devel
|
|
with:
|
|
globalnet: ${{ matrix.globalnet }}
|
|
|
|
- name: Post mortem
|
|
if: failure()
|
|
uses: submariner-io/shipyard/gh-actions/post-mortem@devel
|