Skip to content

feat: add medium and limitSize options for emptyDir #564

feat: add medium and limitSize options for emptyDir

feat: add medium and limitSize options for emptyDir #564

Workflow file for this run

name: Build
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.16
cache: false
- name: Deps
run: |
curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3
chmod 700 get_helm.sh
./get_helm.sh
wget https://github.com/instrumenta/kubeval/releases/latest/download/kubeval-linux-amd64.tar.gz
tar xf kubeval-linux-amd64.tar.gz
sudo cp kubeval /usr/local/bin
helm plugin install https://github.com/helm-unittest/helm-unittest
- name: Check out
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Test
run: |
make lint
make kubeval
make test