Skip to content

Commit 6d61c87

Browse files
committed
Merge branch 'main' into dependabot/npm_and_yarn/main/semantic-release/github-10.3.5
2 parents cbddc4d + 39f4578 commit 6d61c87

File tree

2 files changed

+28
-1
lines changed

2 files changed

+28
-1
lines changed

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
3838
- name: Set up QEMU
3939
if: ${{ steps.version.outputs.VERSION != ''}}
40-
uses: docker/setup-qemu-action@v2
40+
uses: docker/setup-qemu-action@v3
4141

4242
- name: Set up Docker Buildx
4343
if: ${{ steps.version.outputs.VERSION != ''}}

.github/workflows/test.yaml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Dockerfile build test
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
8+
concurrency:
9+
group: ci-${{ github.ref }}
10+
cancel-in-progress: true
11+
12+
jobs:
13+
build:
14+
runs-on: ubuntu-latest
15+
permissions:
16+
contents: read
17+
steps:
18+
- name: Check out repository
19+
uses: actions/checkout@v4
20+
21+
# Build using your Makefile target (runs: docker build -t hello-universe-db .)
22+
- name: Build Docker image
23+
run: make build
24+
25+
# Quick sanity check that the image exists
26+
- name: Verify image was built
27+
run: docker image inspect hello-universe-db:latest > /dev/null

0 commit comments

Comments
 (0)