build(deps): bump github.com/klauspost/compress from 1.17.10 to 1.17.11 in /pkg #101
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: go | |
on: | |
push: | |
branches: ['*'] | |
tags: ['v*'] | |
pull_request: | |
branches: ['*'] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
go-version: ['1.22'] | |
dir: ['pkg', 'cmd/zstdseek'] | |
steps: | |
- uses: dcarbone/[email protected] | |
- uses: actions/checkout@v4 | |
- name: Setup Go ${{ matrix.go-version }} | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go-version }} | |
cache-dependency-path: ${{ matrix.dir }}/go.sum | |
- name: Display Go version | |
run: go version | |
- name: Install dependencies (${{ matrix.dir }}) | |
working-directory: ./${{ matrix.dir }} | |
run: | | |
go get . | |
- name: go work | |
run: | | |
if [ "${{ matrix.dir }}" == "pkg" ]; then | |
echo "Skipping go workspace for ${{ matrix.dir }}" | |
rm -f go.work* | |
exit 0 | |
fi | |
go work init | |
go work use pkg | |
go work use ${{ matrix.dir }} | |
- name: Build (${{ matrix.dir }}) | |
working-directory: ./${{ matrix.dir }} | |
run: | | |
for OSARCH in $(go tool dist list -json | jq -r '.[] | select(.FirstClass) | [.GOOS , .GOARCH] | join("/")'); do | |
IFS="/" read -r OS ARCH <<< "$OSARCH" | |
echo "Building for $OS $ARCH" | |
GOOS=$OS GOARCH=$ARCH go build ./... | |
done | |
- name: Test (${{ matrix.dir }}) | |
working-directory: ./${{ matrix.dir }} | |
run: go test -v ./... |