chore: migrate to gitea
Some checks failed
golangci-lint / lint (push) Failing after 1m46s
Test / test (push) Failing after 2m38s

This commit is contained in:
2026-01-27 00:12:32 +01:00
parent 79d9f55fdc
commit 4d046de5b8
2 changed files with 92 additions and 0 deletions

27
.gitea/workflows/test.yml Normal file
View File

@@ -0,0 +1,27 @@
name: Test
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0 # all history for all branches and tags
- uses: actions/setup-go@v6
with:
go-version-file: go.mod
check-latest: true
cache: false
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y make
- name: Run make check-all
run: make test