2023-02-21 09:52:55 +01:00
|
|
|
name: validate
|
|
|
|
|
2023-09-05 11:00:45 +02:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2023-02-21 09:52:55 +01:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- 'master'
|
|
|
|
- 'releases/v*'
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
prepare:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
outputs:
|
2025-01-08 12:58:36 +01:00
|
|
|
targets: ${{ steps.generate.outputs.targets }}
|
2023-02-21 09:52:55 +01:00
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checkout
|
2023-09-05 07:39:46 +02:00
|
|
|
uses: actions/checkout@v4
|
2023-02-21 09:52:55 +01:00
|
|
|
-
|
2025-01-08 12:58:36 +01:00
|
|
|
name: List targets
|
|
|
|
id: generate
|
|
|
|
uses: docker/bake-action/subaction/list-targets@v6
|
|
|
|
with:
|
|
|
|
target: validate
|
2023-02-21 09:52:55 +01:00
|
|
|
|
|
|
|
validate:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
needs:
|
|
|
|
- prepare
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
target: ${{ fromJson(needs.prepare.outputs.targets) }}
|
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Validate
|
2025-01-08 12:58:36 +01:00
|
|
|
uses: docker/bake-action@v6
|
2023-02-21 09:52:55 +01:00
|
|
|
with:
|
|
|
|
targets: ${{ matrix.target }}
|