Skip to content

fix(deps): update module golang.org/x/oauth2 to v0.17.0 #203

fix(deps): update module golang.org/x/oauth2 to v0.17.0

fix(deps): update module golang.org/x/oauth2 to v0.17.0 #203

Workflow file for this run

name: Go
on:
push:
branches:
- '**'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ^1.16
id: go
- name: Get dependencies
run: make get-dependencies
- name: Ensure that all files are properly formatted
run: |
FILES=$(gofmt -s -l .)
if [ -n "${FILES}" ]; then
printf "Following files are not formatted: \n%s" "$FILES"
exit 1
fi
- name: GO vet
run: make vet
- name: Test
run: make unit-test
- name: Test building
run: make build