Skip to content

Bump google.golang.org/api from 0.143.0 to 0.144.0 #381

Bump google.golang.org/api from 0.143.0 to 0.144.0

Bump google.golang.org/api from 0.143.0 to 0.144.0 #381

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
jobs:
test:
strategy:
matrix:
go: [ '1.20', '1.21' ]
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- name: Checkout code
uses: actions/checkout@v4
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Run tests
run: |
go test -v -coverprofile="cover-profile.out" -short -race ./...