Update module github.com/klauspost/compress to v1.17.11 #1349
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: ci | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
env: | |
# Path to where test results will be saved. | |
TEST_RESULTS: /tmp/test-results | |
# Default minimum version of Go to support. | |
DEFAULT_GO_VERSION: "1.22" | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ env.DEFAULT_GO_VERSION }} | |
cache-dependency-path: "**/go.sum" | |
- name: Tools cache | |
uses: actions/cache@v4 | |
env: | |
cache-name: go-tools-cache | |
with: | |
path: .tools | |
key: ${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('./internal/tools/**') }} | |
- name: Run linters | |
run: make license-check lint | |
- name: Build | |
run: make build | |
- name: Check clean repository | |
run: make check-clean-work-tree | |
test-race: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ env.DEFAULT_GO_VERSION }} | |
cache-dependency-path: "**/go.sum" | |
- name: Tools cache | |
uses: actions/cache@v4 | |
env: | |
cache-name: go-tools-cache | |
with: | |
path: .tools | |
key: ${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('./internal/tools/**') }} | |
- name: Run tests with race detector | |
run: make test-race | |
test-coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ env.DEFAULT_GO_VERSION }} | |
cache-dependency-path: "**/go.sum" | |
- name: Tools cache | |
uses: actions/cache@v4 | |
env: | |
cache-name: go-tools-cache | |
with: | |
path: .tools | |
key: ${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('./internal/tools/**') }} | |
- name: Run coverage tests | |
run: | | |
make test-coverage | |
mkdir $TEST_RESULTS | |
cp coverage.out $TEST_RESULTS | |
cp coverage.txt $TEST_RESULTS | |
cp coverage.html $TEST_RESULTS | |
- name: Upload coverage report | |
uses: codecov/[email protected] | |
with: | |
file: ./coverage.txt | |
fail_ci_if_error: true | |
token: ${{ secrets.CODECOV_TOKEN }} | |
- name: Store coverage test output | |
uses: actions/upload-artifact@v4 | |
with: | |
name: opentelemetry-go-test-output | |
path: ${{ env.TEST_RESULTS }} | |
compatibility-test: | |
strategy: | |
matrix: | |
go-version: ["1.23", "1.22"] | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
# GitHub Actions does not support arm* architectures on default | |
# runners. It is possible to acomplish this with a self-hosted runner | |
# if we want to add this in the future: | |
# https://docs.github.com/en/actions/hosting-your-own-runners/using-self-hosted-runners-in-a-workflow | |
arch: ["386", amd64] | |
exclude: | |
# Not a supported Go OS/architecture. | |
- os: macos-latest | |
arch: "386" | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go-version }} | |
cache-dependency-path: "**/go.sum" | |
- name: Tools cache | |
uses: actions/cache@v4 | |
env: | |
cache-name: go-tools-cache | |
with: | |
path: .tools | |
key: ${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('./internal/tools/**') }} | |
- name: Run tests | |
env: | |
GOARCH: ${{ matrix.arch }} | |
run: make test-short |