Add workflow

This commit is contained in:
Sebastiaan de Schaetzen 2024-10-18 08:26:35 +02:00
parent 03481b1c77
commit 73bb09d56c

View File

@ -0,0 +1,19 @@
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.23.2'
- name: Build
run: go build .
- name: Test
run: go test .