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