mirror of
https://github.com/replicatedhq/troubleshoot.git
synced 2026-02-14 18:29:53 +00:00
48 lines
1.1 KiB
YAML
48 lines
1.1 KiB
YAML
name: push-full-tests
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
unit-integration:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 20
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
- uses: ./.github/actions/setup-go
|
|
- name: Setup K3s
|
|
uses: replicatedhq/action-k3s@main
|
|
with:
|
|
version: v1.31.2-k3s1
|
|
- name: Run tests
|
|
run: make test-integration
|
|
|
|
e2e:
|
|
needs: unit-integration
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 15
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
include:
|
|
- name: preflight
|
|
target: preflight-e2e-test
|
|
needs-k3s: true
|
|
- name: support-bundle-shell
|
|
target: support-bundle-e2e-test
|
|
needs-k3s: true
|
|
- name: support-bundle-go
|
|
target: support-bundle-e2e-go-test
|
|
needs-k3s: false
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
- name: Setup K3s
|
|
if: matrix.needs-k3s
|
|
uses: replicatedhq/action-k3s@main
|
|
with:
|
|
version: v1.31.2-k3s1
|
|
- run: make ${{ matrix.target }}
|
|
|
|
|