Skip to content

Commit 54e363d

Browse files
committed
ci: run docker builds from PRs
This way we can test if we break the build process from a PR.
1 parent 0a82197 commit 54e363d

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Pull Request
2+
3+
on:
4+
pull_request:
5+
6+
# Cancel existing workflows running for this PR
7+
concurrency:
8+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
9+
cancel-in-progress: true
10+
11+
defaults:
12+
run:
13+
shell: bash
14+
15+
jobs:
16+
docker-build:
17+
name: Docker Build
18+
uses: ./.github/workflows/docker-build.yaml
19+
secrets: inherit
20+
with:
21+
push: false

0 commit comments

Comments
 (0)