Skip to content

Bump helm.sh/helm/v3 from 3.14.4 to 3.15.2 #221

Bump helm.sh/helm/v3 from 3.14.4 to 3.15.2

Bump helm.sh/helm/v3 from 3.14.4 to 3.15.2 #221

Workflow file for this run

name: helmtest CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-20.04
steps:
- name: Checkout VCS
uses: actions/checkout@v4
- name: Prepare environment
run: |
go_version=$(cat EXPECTED_GO_VERSION)
echo "GO_VERSION=$go_version" >> $GITHUB_ENV
echo "CI=true" >> $GITHUB_ENV
- name: Setup GO
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Lint
run: make golangci-lint
- name: Test
run: make test