Skip to content

build(deps): bump google.golang.org/api from 0.131.0 to 0.133.0 in /adapters/google #576

build(deps): bump google.golang.org/api from 0.131.0 to 0.133.0 in /adapters/google

build(deps): bump google.golang.org/api from 0.131.0 to 0.133.0 in /adapters/google #576

Workflow file for this run

name: lint
on:
pull_request:
branches:
- main
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version-file: "go.mod"
cache: true
- name: Run Make commands
run: |
make generate
make lint-fix
make lint
- name: Check for changes
id: check-changed-files
uses: tj-actions/[email protected]
with:
files: |
*
- name: Diff
if: steps.check-changed-files.outputs.files_changed == 'true'
run: git diff
- name: Fail if code needs linting
if: steps.check-changed-files.outputs.files_changed == 'true'
run: |
echo "Changed files: ${{ steps.check-changed-files.outputs.changed_files }}"
echo "Run make lint-fix or make generate to attempt to fix linter errors."
exit 1