Upload batches of records to S3 instead of writing to file; Upgrade input validation using Go validator package. #48
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" |