Skip to content

feat: Complete Phase 2.3 - Analytics Integration #12

feat: Complete Phase 2.3 - Analytics Integration

feat: Complete Phase 2.3 - Analytics Integration #12

Workflow file for this run

name: CI
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.22.x'
- name: Download deps
run: go mod download
- name: Vet
run: go vet ./...
- name: Test (race)
run: go test -race -cover ./...
- name: Staticcheck
run: |
go install honnef.co/go/tools/cmd/staticcheck@latest
$(go env GOPATH)/bin/staticcheck ./...
- name: Gosec
run: |
go install github.com/securego/gosec/v2/cmd/gosec@latest
$(go env GOPATH)/bin/gosec ./...