Skip to content

End-to-end tests

End-to-end tests #327

Workflow file for this run

name: End-to-end tests
# Declare default permissions as read only.
permissions: read-all
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * *"
jobs:
build:
name: "Build"
uses: kubewarden/kubewarden-controller/.github/workflows/container-image.yml@main
permissions:
packages: write
with:
push-image: false
generate-sbom: false

Check failure on line 19 in .github/workflows/e2e-tests.yml

View workflow run for this annotation

GitHub Actions / End-to-end tests

Invalid workflow file

The workflow is not valid. .github/workflows/e2e-tests.yml (Line: 19, Col: 22): Invalid input, generate-sbom is not defined in the referenced workflow.
run-e2e-tests:
name: "Tests"
needs: [build]
uses: kravciak/kubewarden-end-to-end-tests/.github/workflows/e2e-tests.yml@main
with:
controller-image-repository: ${{ needs.build.outputs.repository }}
controller-image-tag: ${{ needs.build.outputs.tag }}
controller-container-image-artifact: ${{ needs.build.outputs.artifact }}