Skip to content

fix broken sql query (#163) #658

fix broken sql query (#163)

fix broken sql query (#163) #658

name: "[nebuly-platform] CI Pipeline"
on:
workflow_dispatch:
pull_request:
branches:
- "main"
paths:
- "nebuly-platform/**"
- "!.github/**"
- "!*.md"
push:
branches:
- "main"
paths:
- "nebuly-platform/**"
- "!.github/**"
- "!*.md"
env:
REGISTRY: ghcr.io
jobs:
Lint:
uses: ./.github/workflows/lint.yaml
with:
filter_regex_include: "nebuly-platform/*"
CheckDocumentation:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: "Check if docs are up to date"
working-directory: nebuly-platform
run: |
make doc
if ! git diff --exit-code; then
echo "Documentation not up to date. Please run helm-docs and commit changes!" >&2
exit 1
fi