Skip to content

feat: Implement a standardized OpenTelemetry-first logging system, co… #1

feat: Implement a standardized OpenTelemetry-first logging system, co…

feat: Implement a standardized OpenTelemetry-first logging system, co… #1

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ "1.24", "1.25" ]
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Install dependencies
run: go mod download
- name: Verify dependencies
run: go mod verify
- name: Run Tests
run: go test -v -race -cover ./...
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version: '1.25'
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: latest