Skip to content

build(deps): bump golang.org/x/oauth2 #50

build(deps): bump golang.org/x/oauth2

build(deps): bump golang.org/x/oauth2 #50

Workflow file for this run

name: test
on:
push:
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.19
- name: Run go mod tidy
run: go mod tidy
- name: Run Test
run: go test ./... -coverprofile=coverage.out -covermode=atomic
- name: Upload coverage to Codecov
run: bash <(curl -s https://codecov.io/bash)