CI #167
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [pull_request, workflow_dispatch] | |
jobs: | |
install_all_default: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup helmfile | |
uses: ./ | |
- name: Test | |
run: | | |
ls -l ~/bin | |
helmfile --version | grep 0.157.0 | |
kubectl version --client | grep 1.28.1 | |
helm version | grep v3.13.1 | |
helm plugin list | grep diff | |
helm plugin list | grep s3 | |
install_helmfile_with_version: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup helmfile | |
uses: ./ | |
with: | |
helmfile-version: "v0.135.0" | |
- name: Test | |
run: | | |
ls -l ~/bin | |
helmfile --version | |
kubectl version --client | |
helm version | |
helm plugin list | |
install_helm_plugins_without_helm: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup helmfile | |
uses: ./ | |
with: | |
install-kubectl: no | |
install-helm: no | |
- name: Test | |
run: | | |
ls -l ~/bin | |
helmfile --version | |
kubectl version --client | |
helm version | |
helm plugin list | |
install_only_helmfile: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup helmfile | |
uses: ./ | |
with: | |
install-kubectl: no | |
install-helm: no | |
install-helm-plugins: no | |
- name: Test | |
run: | | |
ls -l ~/bin | |
helmfile --version | |
kubectl version --client | |
helm version | |
helm plugin list | |
install_addtional_plugins: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup helmfile | |
uses: ./ | |
with: | |
additional-helm-plugins: https://github.com/aslafy-z/helm-git --version 0.10.0,https://github.com/zendesk/helm-secrets | |
- name: Test | |
run: | | |
ls -l ~/bin | |
helmfile --version | |
kubectl version --client | |
helm version | |
helm plugin list |