feat: plugin bundling, catalog, installation and versioning #148
Workflow file for this run
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
| # =============================================================== | |
| # CI - Main Continuous Integration Pipeline | |
| # =============================================================== | |
| name: CI | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| types: [opened, synchronize, ready_for_review] | |
| branches: ["main"] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| lint: | |
| name: Lint & Static Analysis | |
| uses: ./.github/workflows/lint.yml | |
| test: | |
| name: Tests | |
| uses: ./.github/workflows/tests.yaml | |
| docs: | |
| name: Docs Build | |
| uses: ./.github/workflows/docs-build.yaml |