mirror of
https://github.com/tiennm99/ghstats.git
synced 2026-05-15 04:58:38 +00:00
21 lines
358 B
YAML
21 lines
358 B
YAML
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 ./...
|