.PHONY: workflows check fmt workflows: .github/workflows/flake-update.yml .github/workflows/pull-check.yml .github/workflows/check-generated.yml .coderabbit.yaml check: cue vet -c ./cicd/ .github/workflows/flake-update.yml -d 'workflows.updater' cue vet -c ./cicd/ .github/workflows/pull-check.yml -d 'workflows.pull_request' cue vet -c ./cicd/ .github/workflows/check-generated.yml -d 'workflows.checker' cue vet -c ./cicd/ .coderabbit.yaml -d 'coderabbit_yml' .github/workflows/flake-update.yml: cicd/*.cue cue.mod/module.cue CUE_DEBUG=sortfields cue export ./cicd/ -f -e workflows.updater -o .github/workflows/flake-update.yml .github/workflows/pull-check.yml: cicd/*.cue cue.mod/module.cue CUE_DEBUG=sortfields cue export ./cicd/ -f -e workflows.pull_request -o .github/workflows/pull-check.yml .github/workflows/check-generated.yml: cicd/*.cue cue.mod/module.cue CUE_DEBUG=sortfields cue export ./cicd/ -f -e workflows.checker -o .github/workflows/check-generated.yml .coderabbit.yaml: cicd/*.cue cue.mod/module.cue CUE_DEBUG=sortfields cue export ./cicd/ -f -e coderabbit_yml -o .coderabbit.yaml fmt: cue fmt cicd/*.cue alejandra .