1
0

Add workflow to test + build package
All checks were successful
Build & push docker image / docker-build-push (push) Successful in 40s

This commit is contained in:
2025-06-04 13:51:39 +02:00
parent fec68c9645
commit 73193ed411

View File

@@ -0,0 +1,19 @@
name: Build & push docker image
on:
push:
branches:
- main
jobs:
docker-build-push:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.24.3
- name: Test
run: go test ./...
- name: Build
run: go build .