Skip to content

fix(deps): update module google.golang.org/api to v0.256.0 #35

fix(deps): update module google.golang.org/api to v0.256.0

fix(deps): update module google.golang.org/api to v0.256.0 #35

name: lint-test-build-push
on:
push:
paths-ignore:
- "**/*.md"
- "renovate.json5"
branches:
- "**"
tags:
- "*"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
lint-test:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
- name: check valid yml
run: yq . *.yaml
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6
with:
go-version: ">=1.25.0"
- name: golangci-lint
uses: golangci/golangci-lint-action@0a35821d5c230e903fcfe077583637dea1b27b47 # v9
with:
version: latest
- name: Install dependencies
run: go get .
- name: Build
run: go build -v ./...
- name: Test with the Go CLI
run: go test -v -race ./...
build-push:
needs: [lint-test]
uses: libops/actions/.github/workflows/build-push.yml@main
permissions:
contents: read
packages: write
id-token: write
secrets: inherit