Bump the github-actions group with 5 updates #2178
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: System Tests | |
on: | |
pull_request: | |
permissions: {} | |
jobs: | |
system-test: | |
name: Subctl Commands | |
timeout-minutes: 30 | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
using: ['', 'globalnet', 'lighthouse'] | |
steps: | |
- name: Check out the repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
- name: Build non deploy subctl | |
run: make cmd/bin/non_deploy_subctl | |
- name: Deploy the environment and run the tests | |
uses: submariner-io/shipyard/gh-actions/e2e@devel | |
with: | |
target: system-test | |
using: ${{ matrix.using }} | |
- name: Post mortem | |
if: failure() | |
uses: submariner-io/shipyard/gh-actions/post-mortem@devel |