Skip to content

chore(deps): bump google.golang.org/api from 0.177.0 to 0.191.0 #88

chore(deps): bump google.golang.org/api from 0.177.0 to 0.191.0

chore(deps): bump google.golang.org/api from 0.177.0 to 0.191.0 #88

Workflow file for this run

---
name: Test
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
on: # yamllint disable-line rule:truthy
pull_request:
branches:
- main
push:
branches:
- main
permissions: read-all
jobs:
go:
name: Go
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.21'
- name: Run go test
run: make go.test
- name: Upload coverage report
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.txt
verbose: true
fail_ci_if_error: true