Bump golang.org/x/oauth2 from 0.16.0 to 0.17.0 #89
Workflow file for this run
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: | |
pull_request: | |
paths: | |
- go.mod | |
- '**.go' | |
- .github/workflows/go.yml | |
push: | |
branches: | |
- main | |
paths: | |
- go.mod | |
- '**.go' | |
- .github/workflows/go.yml | |
jobs: | |
check: | |
name: Go Checks | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'go.mod' | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v4 | |
with: | |
version: v1.56 | |
test: | |
name: Go Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'go.mod' | |
- name: Run tests | |
run: go test -mod=readonly -v ./... -race -cover -tags=integration -covermode=atomic -coverprofile=coverage.txt | |
- name: Install gcov2lcov | |
run: go install github.com/jandelgado/gcov2lcov@latest | |
- name: Convert coverage.txt to coverage.xml | |
run: gcov2lcov -infile=coverage.txt -outfile=coverage.lcov | |
- name: Coveralls | |
uses: coverallsapp/[email protected] | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
file: ./coverage.lcov |