Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove codeclimate in favor of golangci-lint #226

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .codeclimate.yml

This file was deleted.

14 changes: 3 additions & 11 deletions .github/workflows/quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,17 +77,9 @@ jobs:
with:
go-version: ${{env.GO_VERSION}}

- name: run integration tests and post coverage to codeclimate
uses: paambaati/[email protected]
- name: Run acceptance tests
run: make testacc
env:
ANEXIA_TOKEN: ${{ secrets.ANEXIA_TOKEN }}
ANEXIA_LOCATION_ID: 52b5f6b2fd3a4a7eaaedf1a7c019e9ea
ANEXIA_VLAN_ID: 00a239d617504e4ab49122efe0d27657
ANEXIA_TOKEN: ${{ secrets.ANEXIA_TOKEN }}
CC_TEST_REPORTER_ID: ${{ secrets.CODECLIMATE_COVERAGE_ID }}

# poor girls ternary operator
TESTARGS: ${{ (github.ref_type != 'tag' && github.ref_name != 'main') && '-short' || '' }}
with:
prefix: github.com/anexia-it/terraform-provider-anxcloud
coverageCommand: make testacc
coverageLocations: coverage.out:gocov
Loading