Skip to content

feat: sunset codebase indexer v1.0 #7

feat: sunset codebase indexer v1.0

feat: sunset codebase indexer v1.0 #7

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: Test & Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
- name: Install golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: latest
args: --timeout=5m
- name: Run tests
run: go test ./... -race -count=1 -coverprofile=coverage.out
- name: Coverage summary
run: go tool cover -func=coverage.out | grep total