refactor: Remove usage of deprecated get_username
injectable
#8743
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
# SPDX-FileCopyrightText: Copyright DB InfraGO AG and contributors | |
# SPDX-License-Identifier: CC0-1.0 | |
name: lint | |
on: | |
push: | |
branches: ['**'] | |
tags: ['v*.*.*'] | |
pull_request: | |
branches: [main] | |
jobs: | |
helm-chart: | |
runs-on: ubuntu-latest | |
name: Validate helm chart with linter and kubernetes yaml schemas | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install helm | |
uses: azure/setup-helm@v4 | |
- name: Install go | |
uses: actions/setup-go@v5 | |
- name: Install kubeconform | |
run: | | |
go install github.com/yannh/kubeconform/cmd/kubeconform@latest | |
echo "$HOME/go/bin" >> "$GITHUB_PATH" | |
- name: Run helm dependency update | |
run: | | |
helm dependency update ./helm | |
- name: Run helm lint | |
run: | | |
helm lint --strict ./helm | |
- name: Validate chart with kubernetes schema | |
run: | | |
helm template ./helm | kubeconform -strict | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
- uses: actions/setup-python@v5 | |
with: | |
cache: pip | |
cache-dependency-path: ./backend/pyproject.toml | |
python-version: '3.11' | |
- name: Install pre-commit | |
run: |- | |
python -m pip install pre-commit | |
- name: Install dependencies (backend) | |
working-directory: backend/ | |
run: |- | |
python -m pip install '.[dev]' | |
- name: Install dependencies (frontend) | |
working-directory: frontend/ | |
run: |- | |
npm ci | |
- name: Run pre-commit | |
run: |- | |
pre-commit run --all-files | |
- name: Print changed files | |
if: failure() | |
run: |- | |
git add . && git status -vv |