Skip to content

feat(golang): remove unused configuration items #235

feat(golang): remove unused configuration items

feat(golang): remove unused configuration items #235

Workflow file for this run

name: pr
on: pull_request
concurrency:
group: ${{ github.head_ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Fetch history
run: git fetch --prune --unshallow
- name: Set up chart-testing
uses: helm/chart-testing-action@v2.4.0
- name: Run chart-testing (lint)
run: ct lint --config .github/ct-lint.yaml
test:
runs-on: ubuntu-latest
needs: [lint]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Fetch history
run: git fetch --prune --unshallow
- name: Set up chart-testing
uses: helm/chart-testing-action@v2.4.0
- name: Create kind cluster
uses: helm/kind-action@v1.8.0
with:
node_image: kindest/node:v1.25.11
- name: Run chart-testing (install)
run: ct install --config .github/ct-install.yaml