Skip to content

Update module github.com/klauspost/compress to v1.18.0 #150

Update module github.com/klauspost/compress to v1.18.0

Update module github.com/klauspost/compress to v1.18.0 #150

Workflow file for this run

name: Test and lint
on:
pull_request:
types: [opened, reopened, synchronize]
workflow_call: {}
jobs:
test:
name: Test and lint
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
check-latest: true
cache: false
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: latest
- name: Run tests
run: go test -race=1 -v ./...