Skip to content
Merged
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
8 changes: 2 additions & 6 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,14 @@ jobs:
test:
strategy:
matrix:
go-version: [1.25.x]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}

steps:
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: ${{ matrix.go-version }}
go-version: 1.25.x

- name: Checkout code
uses: actions/checkout@v6
Expand Down Expand Up @@ -58,16 +57,13 @@ jobs:
if: matrix.os == 'windows-latest'
run: ./out/bin/rename-pvc.exe --help
test-kind:
strategy:
matrix:
go-version: [1.25.x]
runs-on: ubuntu-latest

steps:
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: ${{ matrix.go-version }}
go-version: 1.25.x

- name: Create k8s Kind Cluster
uses: helm/kind-action@v1.14.0
Expand Down
Loading