Skip to content

Upgrade: bump golang.org/x/oauth2 from 0.15.0 to 0.17.0 #368

Upgrade: bump golang.org/x/oauth2 from 0.15.0 to 0.17.0

Upgrade: bump golang.org/x/oauth2 from 0.15.0 to 0.17.0 #368

Workflow file for this run

name: Coverage
on: [push, pull_request]
jobs:
test:
name: Test with Coverage
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '1.18'
- name: Check out code
uses: actions/checkout@v3
- name: Install dependencies
run: |
go mod download
- name: Lint build config
uses: goreleaser/goreleaser-action@v4
with:
version: latest
args: check
- name: Run Unit tests
run: |
go test -race -covermode atomic -coverprofile=covprofile ./...
- name: Install goveralls
run: go install github.com/mattn/goveralls@latest
- name: Send coverage
env:
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: ~/go/bin/goveralls -coverprofile=covprofile -service=github