Skip to content

DO NOT MERGE: Test an existing user without a password #87

DO NOT MERGE: Test an existing user without a password

DO NOT MERGE: Test an existing user without a password #87

Workflow file for this run

---
# -- Quick checks mostly related to the code-related worklow
name: Repo checks
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
repo-checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v3
- uses: actions/setup-go@v6
- uses: pre-commit/action@v3.0.1
- name: Check CRD generation
run: |-
make sync-crds
if [[ -n $(git status --porcelain) ]]; then
echo "Please update CRDs using 'make sync-crds' and push the changes"
exit 1
fi
- name: Check docs generation
run: |-
make gen-docs
if [[ -n $(git status --porcelain) ]]; then
echo "Please re-generate the docs using 'make gen-docs' and push the changes"
exit 1
fi