Files
magnum-capi-helm-charts/.github/workflows/main.yaml
2023-09-22 15:29:36 +01:00

29 lines
553 B
YAML

name: test main
on:
push:
branches:
- main
concurrency:
group: main
cancel-in-progress: true
jobs:
lint:
uses: ./.github/workflows/lint.yaml
ensure_capi_images:
needs: [lint]
uses: ./.github/workflows/ensure-capi-images.yaml
secrets: inherit
test:
needs: [ensure_capi_images]
uses: ./.github/workflows/test.yaml
secrets: inherit
with:
# Pass the images as JSON
images: ${{ toJSON(needs.ensure_capi_images.outputs) }}
# Only run the sanity check on main
tests-full: false