mirror of
https://github.com/taigrr/pastebin
synced 2026-04-17 05:25:02 -07:00
- Update .drone.yml to use Go 1.26 image and modern test commands - Remove outdated release script (referenced go.rice and prologic) - Remove Jekyll config (_config.yml) - Update README with correct module path and modern CLI flags - Update .dockerignore to exclude unnecessary files - All checks pass: go build, go vet, staticcheck, go test -race, goimports
17 lines
342 B
YAML
17 lines
342 B
YAML
kind: pipeline
|
|
name: default
|
|
|
|
steps:
|
|
- name: build
|
|
image: golang:1.26
|
|
commands:
|
|
- go build ./...
|
|
- go vet ./...
|
|
- go test -v -cover -coverprofile=coverage.txt -covermode=atomic -coverpkg=./... -race ./...
|
|
|
|
- name: coverage
|
|
image: plugins/codecov
|
|
settings:
|
|
token:
|
|
from_secret: codecov-token
|