mirror of
https://github.com/submariner-io/submariner-charts.git
synced 2026-09-20 20:20:35 +00:00
Following the pattern from other repos, split the E2E test job into a default job that runs a single default-only test always on PRs and a full job that runs the full matrix when the ready-to-test label is added. Signed-off-by: Daniel Farrell <dfarrell@redhat.com>
22 lines
430 B
YAML
22 lines
430 B
YAML
---
|
|
name: End to End Default
|
|
|
|
on:
|
|
pull_request:
|
|
|
|
jobs:
|
|
e2e:
|
|
name: E2E
|
|
timeout-minutes: 30
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out the repository
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Run E2E deployment and tests
|
|
uses: submariner-io/shipyard/gh-actions/e2e@devel
|
|
|
|
- name: Post mortem
|
|
if: failure()
|
|
uses: submariner-io/shipyard/gh-actions/post-mortem@devel
|