build action
Build / build (push) Has been cancelled

This commit is contained in:
Lukas Höppner
2026-05-19 16:37:26 +02:00
parent cac85ae744
commit f48b8d3dd5
+23
View File
@@ -0,0 +1,23 @@
name: Build
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- name: Build
run: go build ./...