2 files changed,
31 insertions(+),
0 deletions(-)
Author:
Oleksandr Smirnov
olexsmir@gmail.com
Committed at:
2026-02-05 22:16:36 +0200
Change ID:
uvrxpkxtmtzxrtpwxrtzkxvpypokrnnw
Parent:
ab67766
jump to
| A | .github/dependabot.yml |
| A | .github/workflows/ci.yml |
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 ./...