mirror of
https://github.com/zitadel/zitadel.git
synced 2025-03-03 09:35:12 +00:00
20 lines
362 B
YAML
20 lines
362 B
YAML
![]() |
name: "Docker Bake Test"
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- docker-bake
|
||
|
|
||
|
jobs:
|
||
|
test:
|
||
|
timeout-minutes: 10
|
||
|
runs-on:
|
||
|
group: zitadel-public
|
||
|
steps:
|
||
|
- uses: actions/checkout@v4
|
||
|
- uses: docker/setup-buildx-action@v3
|
||
|
- uses: docker/bake-action@v6
|
||
|
with:
|
||
|
source: .
|
||
|
push: false
|
||
|
targets: build,lint
|