Skip to content

Commit

Permalink
Remove 1/4 CI matrix tests (#233)
Browse files Browse the repository at this point in the history
  • Loading branch information
dglsparsons authored Oct 31, 2024
1 parent 3c27d55 commit 9966e1a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.21"
go-version: "1.23"
- name: Import GPG key
id: import_gpg
uses: crazy-max/ghaction-import-gpg@v6
Expand Down
20 changes: 9 additions & 11 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.21"
go-version: "1.23"
id: go
- name: Install Task
uses: arduino/setup-task@v2
Expand All @@ -51,7 +51,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.21"
go-version: "1.23"
id: go
- name: Install Task
uses: arduino/setup-task@v2
Expand All @@ -73,24 +73,22 @@ jobs:
max-parallel: 1
fail-fast: false
matrix:
os:
- "ubuntu-latest"
- "windows-latest"
terraform:
- "1.9.*"
- "1.4.*"
runs-on: ${{ matrix.os }}
m:
- { os: "ubuntu-latest", terraform: "1.9.*" }
- { os: "ubuntu-latest", terraform: "1.4.*" }
- { os: "windows-latest", terraform: "1.9.*" }
runs-on: ${{ matrix.m.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.21"
go-version: "1.23"
id: go
- uses: hashicorp/setup-terraform@v3
with:
terraform_version: ${{ matrix.terraform }}
terraform_version: ${{ matrix.m.terraform }}
terraform_wrapper: false
- name: Get dependencies
run: go mod download
Expand Down

0 comments on commit 9966e1a

Please sign in to comment.