26 lines
543 B
YAML
26 lines
543 B
YAML
name: Test End-To-End
|
|
|
|
on:
|
|
workflow_call:
|
|
|
|
jobs:
|
|
test-e2e:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 60 # E2E can be heavier
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
distro: [arch, debian, ubuntu, fedora, centos]
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Show Docker version
|
|
run: docker version
|
|
|
|
- name: Run E2E tests via make (${{ matrix.distro }})
|
|
run: |
|
|
set -euo pipefail
|
|
distro="${{ matrix.distro }}" make test-e2e
|