Enable Gitea workflow
Some checks failed
test / test-default (push) Failing after 1m17s

This commit is contained in:
2025-09-09 09:52:19 +02:00
parent ce817cf898
commit 601d881ddc

View File

@@ -0,0 +1,26 @@
name: test
on:
push:
branches:
- main
jobs:
test-default:
runs-on: ubuntu-latest
container:
image: gitea/runner-images:ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Test
run: |
go test -v ./...
go vet ./...