all repos

mugit @ 4e525c13e41d99d6a5cde070363b33b29aadfdf1

馃惍 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
Authored at: 2026-02-05 22:10:03 +0200
Change ID: uvrxpkxtmtzxrtpwxrtzkxvpypokrnnw
Parent: ab67766
A .github/dependabot.yml
路路路
        
        1
        +version: 2

      
        
        2
        +updates:

      
        
        3
        +  - package-ecosystem: gomod

      
        
        4
        +    directory: /

      
        
        5
        +    open-pull-requests-limit: 6

      
        
        6
        +    schedule:

      
        
        7
        +      interval: monthly

      
        
        8
        +    cooldown:

      
        
        9
        +      default-days: 30

      
A .github/workflows/ci.yml
路路路
        
        1
        +name: ci

      
        
        2
        +on:

      
        
        3
        +  workflow_dispatch:

      
        
        4
        +  push:

      
        
        5
        +

      
        
        6
        +jobs:

      
        
        7
        +  release:

      
        
        8
        +    runs-on: ubuntu-latest

      
        
        9
        +    steps:

      
        
        10
        +      - uses: actions/checkout@v5

      
        
        11
        +

      
        
        12
        +      - name: Set up Go

      
        
        13
        +        uses: actions/setup-go@v5

      
        
        14
        +        with:

      
        
        15
        +          go-version-file: go.mod

      
        
        16
        +          cache-dependency-path: go.mod

      
        
        17
        +

      
        
        18
        +      - name: Build

      
        
        19
        +        run: go build .

      
        
        20
        +

      
        
        21
        +      - name: Tests

      
        
        22
        +        run: go test -v -race ./...