![dependabot[bot]](/assets/img/avatar_default.png)
Bumps [actions/setup-go](https://github.com/actions/setup-go) from 4.1.0 to 5.0.0.
- [Release notes](https://github.com/actions/setup-go/releases)
- [Commits](93397bea11...0c52d547c9
)
---
updated-dependencies:
- dependency-name: actions/setup-go
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
24 lines
846 B
YAML
24 lines
846 B
YAML
name: Tests
|
|
on: [push, workflow_dispatch]
|
|
jobs:
|
|
bats-unit-tests:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
|
- uses: ./.github/actions/setup-test-tools
|
|
- run: bats --tap --timing ./test/unit
|
|
chart-verifier:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
CHART_VERIFIER_VERSION: '1.13.0'
|
|
steps:
|
|
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
|
- name: Setup test tools
|
|
uses: ./.github/actions/setup-test-tools
|
|
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
|
|
with:
|
|
go-version: '1.21.3'
|
|
- run: go install "github.com/redhat-certification/chart-verifier@${CHART_VERIFIER_VERSION}"
|
|
- run: bats --tap --timing ./test/chart
|
|
permissions:
|
|
contents: read
|