Skip to content

chore(deps): bump google.golang.org/api from 0.275.0 to 0.276.0 #327

chore(deps): bump google.golang.org/api from 0.275.0 to 0.276.0

chore(deps): bump google.golang.org/api from 0.275.0 to 0.276.0 #327

Workflow file for this run

---
name: test
on:
push:
branches:
- main
- v2
pull_request:
permissions:
contents: read
pull-requests: write
checks: write
jobs:
test:
name: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version-file: "go.mod"
cache: true
- name: Install go-ctrf-json-reporter
run: go install github.com/ctrf-io/go-ctrf-json-reporter/cmd/go-ctrf-json-reporter@latest
- name: Run tests
run: go test -json ./... | go-ctrf-json-reporter -o test-results.json
- name: Publish Test Report
uses: ctrf-io/github-test-reporter@0f299074936c32ccaab5be5230511f6b2b9080aa # v1.0.28
with:
report-path: test-results.json
github-report: true
if: always()