📝 update star request message in README and CHANGELOG #55
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Tests on Pull Requests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: {} | |
| permissions: | |
| contents: read | |
| jobs: | |
| helm-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: step-security/harden-runner@e3f713f2d8f53843e71c69a996d56f51aa9adfb9 # v2.14.1 | |
| with: | |
| egress-policy: audit | |
| - name: Checkout | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Helm | |
| uses: azure/setup-helm@5119fcb9089d432beecbf79bb2c7915207344b78 # v3.5 | |
| with: | |
| version: v3.19.5 | |
| - name: Install chart unittest | |
| run: | | |
| helm env | |
| helm plugin install https://github.com/helm-unittest/helm-unittest | |
| - name: Run unitests | |
| run: | | |
| make helm-unittest | |
| # go-test: | |
| # runs-on: ubuntu-latest | |
| # steps: | |
| # - uses: step-security/harden-runner@e3f713f2d8f53843e71c69a996d56f51aa9adfb9 # v2.14.1 | |
| # with: | |
| # egress-policy: audit | |
| # - name: Checkout | |
| # uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| # - name: Fetch History | |
| # run: git fetch --prune --unshallow | |
| # - name: Setup Go | |
| # uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0 | |
| # id: setup-go | |
| # with: | |
| # go-version-file: "go.mod" | |
| # - name: Download Go modules | |
| # if: ${{ steps.setup-go.outputs.cache-hit != 'true' }} | |
| # run: go mod download | |
| # - name: Run Unit Tests | |
| # run: | | |
| # make test |