Skip to content

Commit

Permalink
ci(lint): Temporarily disable tfproviderlint due to a bug
Browse files Browse the repository at this point in the history
Once the following issue is resolved, we can re-eanble it again:

- bflad/tfproviderlint#255
  • Loading branch information
jimeh committed Jan 26, 2023
1 parent b38d3fb commit 596d125
Showing 1 changed file with 16 additions and 14 deletions.
30 changes: 16 additions & 14 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,22 @@ jobs:
env:
VERBOSE: "true"

lint-provider:
name: Lint Provider
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: 1.19
- uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
- name: Run tfproviderlint
run: make lint-provider
## TODO: Enable when this issue is resolved:
## https://github.com/bflad/tfproviderlint/issues/255
# lint-provider:
# name: Lint Provider
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - uses: actions/setup-go@v2
# with:
# go-version: 1.19
# - uses: actions/cache@v2
# with:
# path: ~/go/pkg/mod
# key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
# - name: Run tfproviderlint
# run: make lint-provider

tidy:
name: Tidy
Expand Down

0 comments on commit 596d125

Please sign in to comment.