Skip to content

dep: update module golang.org/x/oauth2 to v0.23.0 #1706

dep: update module golang.org/x/oauth2 to v0.23.0

dep: update module golang.org/x/oauth2 to v0.23.0 #1706

Workflow file for this run

name: Testing Coverage
on: [push, pull_request]
permissions:
contents: read
jobs:
build:
name: Test and Coverage
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
with:
go-version-file: "go.mod"
- name: Prepare coverage
run: mkdir coverage
- name: Test
run: SKIP_TYPES=time-dependent go test ./... -coverpkg=$( go list ./... | grep -v /tests | grep -v /tools | paste -sd "," -) -coverprofile coverage/coverage.out
- name: Coverage convert
uses: jandelgado/gcov2lcov-action@c680c0f7c7442485f1749eb2a13e54a686e76eb5 # v1.0.9
with:
infile: coverage/coverage.out
outfile: coverage/lcov.info
- name: Coveralls report
uses: coverallsapp/github-action@643bc377ffa44ace6394b2b5d0d3950076de9f63 # v2.3.0
with:
github-token: ${{ secrets.GITHUB_TOKEN }}