Skip to content

Bump github.com/hashicorp/go-tfe from 1.101.0 to 1.102.0 #26

Bump github.com/hashicorp/go-tfe from 1.101.0 to 1.102.0

Bump github.com/hashicorp/go-tfe from 1.101.0 to 1.102.0 #26

Workflow file for this run

name: CI
on:
push:
branches:
- master
- main
pull_request:
branches:
- master
- main
jobs:
test:
runs-on: ubuntu-latest
env:
GOLANGCI_LINT_VERSION: v2.11
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: '1.26.x'
- name: 'Go fmt check'
run: |
fmt_out=$(gofmt -s -l .)
if [ -n "$fmt_out" ]; then
echo "::error::run gofmt -s on these files:"
echo "$fmt_out"
exit 1
fi
- name: 'Go vet'
run: go vet ./...
- name: 'golangci lint'
uses: golangci/golangci-lint-action@v9
with:
version: ${{ env.GOLANGCI_LINT_VERSION }}
args: --timeout 4m --config .golangci.yaml
- name: 'Test (race)'
run: go test ./... -race