all repos

mugit @ 4e525c1

🐮 git server that your cow will love
2 files changed, 31 insertions(+), 0 deletions(-)
chore: ci
Author: Oleksandr Smirnov olexsmir@gmail.com
Committed at: 2026-02-05 22:16:36 +0200
Change ID: uvrxpkxtmtzxrtpwxrtzkxvpypokrnnw
Parent: ab67766
A .github/dependabot.yml

@@ -0,0 +1,9 @@

+version: 2 +updates: + - package-ecosystem: gomod + directory: / + open-pull-requests-limit: 6 + schedule: + interval: monthly + cooldown: + default-days: 30
A .github/workflows/ci.yml

@@ -0,0 +1,22 @@

+name: ci +on: + workflow_dispatch: + push: + +jobs: + release: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v5 + + - name: Set up Go + uses: actions/setup-go@v5 + with: + go-version-file: go.mod + cache-dependency-path: go.mod + + - name: Build + run: go build . + + - name: Tests + run: go test -v -race ./...