Skip to content

build(deps): bump golang.org/x/oauth2 from 0.12.0 to 0.14.0 #232

build(deps): bump golang.org/x/oauth2 from 0.12.0 to 0.14.0

build(deps): bump golang.org/x/oauth2 from 0.12.0 to 0.14.0 #232

Workflow file for this run

name: Test and Build
on: [pull_request]
env:
go_version: '1.21.4'
jobs:
test:
strategy:
fail-fast: false
matrix:
os: ["ubuntu-22.04", "macOS-latest"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: actions/setup-go@v4
with:
go-version: ${{ env.go_version }}
- if: matrix.os == 'ubuntu-22.04'
run: |
sudo apt update
sudo apt install --yes build-essential
- run: "make test"
- run: "make check"
- run: "go vet ./..."
- run: "make local"