File tree 2 files changed +6
-8
lines changed
2 files changed +6
-8
lines changed Original file line number Diff line number Diff line change 5
5
using : " composite"
6
6
steps :
7
7
- name : Install Terraform
8
+ if : ${{ runner.os }} != 'Windows'
8
9
uses : hashicorp/setup-terraform@b9cd54a3c349d3f38e8881555d616ced269862dd # v3.1.2
9
10
with :
10
11
terraform_version : 1.11.4
11
12
terraform_wrapper : false
13
+ - name : Install Terraform on Windows
14
+ if : ${{ runner.os }} == 'Windows'
15
+ shell : bash
16
+ run : |
17
+ choco install terraform --version=1.11.4 -y
Original file line number Diff line number Diff line change @@ -404,14 +404,6 @@ jobs:
404
404
cache-path : " ~/.cache/go-cache"
405
405
override-condition : " true"
406
406
407
- - name : Upload test stats to Datadog
408
- timeout-minutes : 1
409
- continue-on-error : true
410
- uses : ./.github/actions/upload-datadog
411
- if : success() || failure()
412
- with :
413
- api-key : ${{ secrets.DATADOG_API_KEY }}
414
-
415
407
# We don't run the full test-suite for Windows & MacOS, so we just run the CLI tests on every PR.
416
408
# We run the test suite in test-go-pg, including CLI.
417
409
test-cli :
You can’t perform that action at this time.
0 commit comments