Skip to content

Support import of _prefix arguments #13499

Support import of _prefix arguments

Support import of _prefix arguments #13499

Workflow file for this run

name: ProviderLint Checks
on:
push:
branches:
- main
- 'release/**'
pull_request:
paths:
- .github/workflows/providerlint.yml
- GNUmakefile
- go.sum
- internal/**
- names/**
jobs:
providerlint:
runs-on: [custom, linux, medium]
steps:
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
- uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
with:
go-version-file: go.mod
- name: go env
run: echo "GOCACHE=$(go env GOCACHE)" >> $GITHUB_ENV
- uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2
continue-on-error: true
timeout-minutes: 2
with:
path: ${{ env.GOCACHE }}
key: ${{ runner.os }}-GOCACHE-${{ hashFiles('go.sum') }}-${{ hashFiles('internal/**') }}
- uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2
continue-on-error: true
timeout-minutes: 2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-pkg-mod-${{ hashFiles('go.sum') }}
- run: cd .ci/providerlint && go install -buildvcs=false .
- run: make providerlint