Skip to content

Update golang.org/x/mobile digest to 2cfb765 #657

Update golang.org/x/mobile digest to 2cfb765

Update golang.org/x/mobile digest to 2cfb765 #657

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.24'
- 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/[email protected]
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