Skip to content

build(deps): bump github.com/cloudquery/plugin-sdk/v4 from 4.95.1 to 4.95.2 #267

build(deps): bump github.com/cloudquery/plugin-sdk/v4 from 4.95.1 to 4.95.2

build(deps): bump github.com/cloudquery/plugin-sdk/v4 from 4.95.1 to 4.95.2 #267

Workflow file for this run

name: test
on:
push:
branches:
- main
pull_request:
branches: [main]
jobs:
test:
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
fetch-depth: 2
- name: Set up Go 1.x
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version-file: go.mod
- name: golangci-lint
uses: golangci/golangci-lint-action@82606bf257cbaff209d206a39f5134f0cfbfd2ee # v9.2.1
with:
version: v2.11.4
args: --timeout=10m
- name: Get dependencies
run: go get -t -d ./...
- name: Build
run: go build .
- name: Test
run: make test
- name: Setup Cloudquery CLI
uses: cloudquery/setup-cloudquery@b7f7ea62cfec9774ad44a0d9307d0f6c5573bcb6 # v5.0.2
with:
version: 'v6.20.5'
- name: Generate docs
if: github.event_name == 'pull_request'
run: make gen-docs
- name: Fail if generation updated files
if: github.event_name == 'pull_request'
run: test "$(git status -s | wc -l)" -eq 0 || (git status -s; echo "Generated docs are out of date. Run 'make gen-docs' and commit again" && exit 1)