Added workflow for checking prs

Renamed workflow file from action to publish
This commit is contained in:
NATroutter
2026-01-18 21:16:08 +02:00
parent 04c8d60796
commit ab1cf4af11
2 changed files with 27 additions and 0 deletions

27
.github/workflows/pr-build-check.yml vendored Normal file
View File

@@ -0,0 +1,27 @@
name: PR Build Check
on:
pull_request:
branches:
- "**"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build Docker image
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile
platforms: linux/amd64,linux/arm64
push: false