All checks were successful
Build and Push / push (push) Successful in 33s
Reviewed-on: #1
21 lines
525 B
YAML
21 lines
525 B
YAML
name: Build and Test
|
|
|
|
on:
|
|
pull_request:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: catthehacker/ubuntu:act-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0 # all history for all branches and tags
|
|
- name: Install Helm
|
|
run: curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash
|
|
- name: Lint Helm Chart
|
|
run: helm lint .
|
|
- name: pack helm release
|
|
run: helm package . |