Skip to content

Merge branch 'release/1.0.0' #24

Merge branch 'release/1.0.0'

Merge branch 'release/1.0.0' #24

Workflow file for this run

name: Push & PR to the main branch
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Helm
uses: ./.github/actions/setup_helm
- name: Run linter
run: bash run_tests.sh --lint
unit-test:
name: Unit Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Helm
uses: ./.github/actions/setup_helm
- name: Install Helm unit test plugin
run: helm plugin install https://github.com/helm-unittest/helm-unittest.git
- name: Run unit tests
run: bash run_tests.sh --unit
integration-test:
name: Integration Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run integration tests
run: bash run_tests.sh --integration