Skip to content

Commit bb6f3d9

Browse files
Add simple PR gate that builds docker container for one platform
1 parent b5f6d46 commit bb6f3d9

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

.github/workflows/pr-gate.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: PR Gate
2+
3+
# This gate simply validates that we can build the docker container.
4+
5+
on:
6+
pull_request:
7+
branches: ["main"]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
permissions:
13+
contents: read
14+
steps:
15+
- name: Checkout repository
16+
uses: actions/checkout@v4
17+
with:
18+
submodules: "true"
19+
20+
- name: Build Docker image
21+
id: build
22+
uses: docker/build-push-action@v6
23+
with:
24+
context: .

0 commit comments

Comments
 (0)