fix broken sql query (#163) #658
This file contains hidden or 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: "[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 |