feat: Tests workers
All checks were successful
Build Hello World Image / build (push) Successful in 15s

This commit is contained in:
Vincent Mahnke 2025-10-11 19:33:56 +02:00
commit 2846cecc86

View file

@ -0,0 +1,22 @@
name: Build Hello World Image
on:
push:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build Hello World Docker image
run: |
echo -e 'FROM alpine\nCMD echo Hello, World!' > Dockerfile
docker build -t hello-world:latest .