Automatic Version Bumping from 2.7.0 to 2.8.0 #110
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: Lint | |
on: | |
push: | |
branches: | |
- anvil | |
pull_request: {} | |
jobs: | |
linting: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Kubectl | |
run: curl -LO "https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl" && chmod +x ./kubectl && sudo mv ./kubectl /usr/local/bin/kubectl && kubectl version || true | |
- name: Install Helm | |
run: curl https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | bash | |
- uses: actions/checkout@v3 | |
with: | |
persist-credentials: false | |
- name: Helm dep update | |
run: cd galaxykubeman/ && helm dep update && cd .. | |
- name: Helm lint | |
run: helm lint galaxykubeman/ |