Add support for writing each batch of records as a CLP IR file; Replace Fluent Bit Go MessagePack decoder with our own implementation. #20
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "lint" | |
on: | |
push: | |
pull_request: | |
workflow_call: | |
jobs: | |
go-lint: | |
strategy: | |
matrix: | |
go: ["1.22"] | |
os: ["ubuntu-latest", "macos-latest"] | |
runs-on: "${{ matrix.os }}" | |
steps: | |
- uses: "actions/checkout@v4" | |
- uses: "actions/setup-go@v5" | |
with: | |
go-version: "${{ matrix.go }}" | |
- uses: "golangci/golangci-lint-action@v6" | |
with: | |
version: "v1.59" |