Update 01-Authentication.md #33
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: Run Tests | |
on: | |
push: | |
branches-ignore: | |
- dev | |
- main | |
paths-ignore: | |
- "README.md" | |
- ".vscode/**" | |
workflow_call: | |
jobs: | |
run-tests: | |
name: Run Tests | |
timeout-minutes: 10 | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Kubectl tool installer | |
uses: Azure/setup-kubectl@v3 | |
- name: Setup Kustomize | |
uses: imranismail/setup-kustomize@v2 | |
- name: Build k8s manifests | |
working-directory: kubernetes | |
run: | | |
envs=( "development" "production" ) | |
for i in "${envs[@]}" | |
do | |
kustomize build "$i" | |
done |