Skip to content

Update module github.com/klauspost/compress to v1.17.8 #600

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

Update module github.com/klauspost/compress to v1.17.8 #600

Workflow file for this run

name: Test coverage
on:
pull_request:
push:
branches:
- master
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: '1.20'
- name: Checkout code
uses: actions/checkout@v3
- name: Run tests
run: go test -covermode atomic -coverprofile=profile.cov ./...
- name: Convert .cov to lcov
uses: jandelgado/gcov2lcov-action@v1.0.0
with:
infile: profile.cov
outfile: coverage.lcov
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: coverage.lcov