Sebastiaan de Schaetzen 68f8dc50e0
All checks were successful
Build / build (push) Successful in 1m56s
Use go action
2025-03-16 11:06:12 +01:00

16 lines
261 B
YAML

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