1
0

ci: add build workflow
All checks were successful
Go / build (push) Successful in 38s

This commit is contained in:
Wiktor Zykubek 2024-12-27 06:32:50 +01:00
parent e415f8bcae
commit f64e2ce04f
Signed by: wzykubek
GPG Key ID: 2221881F957D89B9

23
.gitea/workflows/go.yaml Normal file
View File

@ -0,0 +1,23 @@
name: Go
on:
push:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.23.4'
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...