From f6f99e0a94424e95983d28d6bfbcc3877f5f6d6a Mon Sep 17 00:00:00 2001 From: facchettos Date: Fri, 9 Feb 2024 11:38:20 +0100 Subject: [PATCH] testing --- .github/workflows/unit-tests-2.yaml | 49 +++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 .github/workflows/unit-tests-2.yaml diff --git a/.github/workflows/unit-tests-2.yaml b/.github/workflows/unit-tests-2.yaml new file mode 100644 index 0000000000..090b6f27fc --- /dev/null +++ b/.github/workflows/unit-tests-2.yaml @@ -0,0 +1,49 @@ +name: Unit tests copy + +on: + release: + types: [created] + pull_request: + branches: + - main + paths: + - "**.go" + - "!test/**" # exclude changes in e2e tests + - ".github/workflows/unit-tests.yaml" + - "hack/test.sh" + - "charts/**" + +concurrency: + group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} + cancel-in-progress: true + +jobs: + helm-unit-tests: + name: Execute all helm tests + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Install Helm Unit Test Plugin + run: | + helm plugin install https://github.com/helm-unittest/helm-unittest + - name: Run Helm Unit Tests + run: | + helm unittest charts/eks -d + helm unittest charts/k3s -d + helm unittest charts/k0s -d + helm unittest charts/k8s -d + + go-unit-test: + name: Execute all go tests + runs-on: ubuntu-22.04 + steps: + - name: Set up Go 1.21 + uses: actions/setup-go@v5 + with: + go-version: "1.21" + cache: false + - name: Check out code into the Go module directory + uses: actions/checkout@v4 + - name: Execute unit tests + run: ./hack/test.sh