feat: scaffold ghstats — Go CLI for GitHub profile SVG cards

This commit is contained in:
2026-04-18 18:22:20 +07:00
parent 5597226073
commit d92ef7e324
11 changed files with 379 additions and 1 deletions
+20
View File
@@ -0,0 +1,20 @@
name: CI
on:
push:
branches: [main]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version: "1.26"
cache: true
- run: go mod tidy -diff
- run: go vet ./...
- run: go build ./...
- run: go test ./...