~bigbes/core-go

ref: 9ad4643973379ffcc65c3f465d6add31c9f37569 core-go/.builds/alpine.yml -rw-r--r-- 244 bytes
9ad46439 — Conrad Hoffmann objects: make `URL()` respect `s3-insecure` 7 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 ./...