Add GitHub Actions workflows for build and deployment
All checks were successful
Build / build (push) Successful in 1m48s

This commit is contained in:
2025-03-24 12:37:10 +01:00
parent 6e552e4de8
commit a0822eed20
2 changed files with 38 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
name: Build
on: [push]
jobs:
build:
runs-on: standard-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '>=1.24'
- name: Test
run: go test . -v