Fixes #212, fixes #203, fixes #200 - Switch to Zammad 6.1. #494
Workflow file for this run
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: | |
branches: | |
- main | |
paths: | |
- "zammad/**" | |
env: | |
helm-version: "v3.12.1" | |
kubeconform-version: "v0.6.3" | |
jobs: | |
super-linter: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Lint Code Base | |
uses: github/super-linter/slim@v5 | |
env: | |
DEFAULT_BRANCH: main | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
LINTER_RULES_PATH: .github/linters | |
VALIDATE_ALL_CODEBASE: false | |
VALIDATE_JSCPD: false | |
VALIDATE_KUBERNETES_KUBECONFORM: false | |
VALIDATE_YAML: false | |
lint-chart: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Helm | |
uses: azure/[email protected] | |
with: | |
version: "${{ env.helm-version }}" | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.7 | |
- name: Set up chart-testing | |
uses: helm/[email protected] | |
- name: Run chart-testing (lint) | |
run: ct lint --config .github/ct.yaml | |
kubeconform-chart: | |
runs-on: ubuntu-22.04 | |
needs: | |
- lint-chart | |
strategy: | |
matrix: | |
k8s: | |
- v1.25.11 | |
- v1.26.6 | |
- v1.27.3 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Helm | |
uses: azure/[email protected] | |
with: | |
version: "${{ env.helm-version }}" | |
- name: Run kubeconform | |
env: | |
KUBERNETES_VERSION: ${{ matrix.k8s }} | |
KUBECONFORM_VERSION: "${{ env.kubeconform-version }}" | |
run: .github/kubeconform.sh | |
install-chart: | |
name: install-chart | |
runs-on: ubuntu-22.04 | |
needs: | |
- kubeconform-chart | |
strategy: | |
matrix: | |
k8s: | |
- v1.25.11 | |
- v1.26.6 | |
- v1.27.3 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Helm | |
uses: azure/[email protected] | |
with: | |
version: "${{ env.helm-version }}" | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.7 | |
- name: Set up chart-testing | |
uses: helm/[email protected] | |
- name: Run chart-testing (list-changed) | |
id: list-changed | |
run: if [[ -n "$(ct list-changed --config .github/ct.yaml)" ]]; then echo 'changed=true' >> "$GITHUB_OUTPUT"; fi | |
- name: Create kind cluster | |
uses: helm/[email protected] | |
if: steps.list-changed.outputs.changed == 'true' | |
with: | |
config: .github/kind-config.yaml | |
node_image: kindest/node:${{ matrix.k8s }} | |
- name: Run chart-testing (install) | |
run: ct install --config .github/ct.yaml |