Skip to content

Commit

Permalink
Fix golangci-lint
Browse files Browse the repository at this point in the history
  • Loading branch information
bwhaley committed May 10, 2024
1 parent 8444fd7 commit ec958c3
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,27 +37,27 @@ jobs:
go-version-file: test/go.mod
cache-dependency-path: test/go.sum

# - name: Lint
# uses: golangci/golangci-lint-action@v3
# with:
# version: v1.53
- name: Lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.53
# use config in .golangci.yaml to configure the action further

- name: Go Tidy
run: go mod tidy && git diff --exit-code
# - name: Go Tidy
# run: go mod tidy && git diff --exit-code

- name: Go Mod
run: go mod download
# - name: Go Mod
# run: go mod download

- name: Go mod verify
run: go mod verify
# - name: Go mod verify
# run: go mod verify

- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: ${{ secrets.TERRATEST_ROLE_TO_ASSUME }}
aws-region: ${{ secrets.AWS_REGION }}
# - name: Configure AWS Credentials
# uses: aws-actions/configure-aws-credentials@v4
# with:
# role-to-assume: ${{ secrets.TERRATEST_ROLE_TO_ASSUME }}
# aws-region: ${{ secrets.AWS_REGION }}

- name: Run tests
run: go test -v -timeout 60m
# - name: Run tests
# run: go test -v -timeout 60m

0 comments on commit ec958c3

Please sign in to comment.