Skip to content
This repository was archived by the owner on Apr 5, 2026. It is now read-only.

codeberg

codeberg #49

Workflow file for this run

---
name: build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up GO
uses: actions/setup-go@v2
with:
go-version: '1.25.5'
- name: Build
run: go build .
- name: Test
run: go test -v ./...