~bigbes/core-go

ref: 67e655222767f9737a564a5cba19d3c268e9b2ac core-go/.builds/alpine.yml -rw-r--r-- 244 bytes
67e65522 — Simon Martin server: setup router dedicated to webhook processing 4 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
image: alpine/3.22
packages:
  - go
  - golangci-lint
sources:
 - https://git.sr.ht/~sircmpwn/core-go
tasks:
- lint: |
    cd core-go
    golangci-lint run
- build: |
    cd core-go
    go build ./...
- test: |
    cd core-go
    go test ./...