Bump golang.org/x/oauth2 from 0.22.0 to 0.23.0 #74
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
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
name: Run tests | |
jobs: | |
test: | |
strategy: | |
matrix: | |
platform: [ubuntu-latest, macos-latest, windows-latest] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
cache: true | |
- name: Download dependencies | |
run: | | |
go mod download | |
go mod tidy -v | |
- name: Test | |
run: make test | |
- name: Vet | |
if: matrix.platform == 'ubuntu-latest' | |
run: make vet | |
- name: fmt | |
if: matrix.platform == 'ubuntu-latest' | |
run: make fmt | |
- name: Vulnerabilty Test | |
if: matrix.platform == 'ubuntu-latest' | |
run: make vulncheck |