Playing around with possible output schema definitions #9
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: CI PR | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| # Cancel running workflows when additional changes are pushed | |
| # https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#example-using-a-fallback-value | |
| concurrency: | |
| group: ${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| jobs: | |
| call-check-linkml-schemas: | |
| uses: ./.github/workflows/check-linkml-schemas.yml | |
| call-build-docs: | |
| needs: [call-check-linkml-schemas] | |
| uses: ./.github/workflows/build-docs.yml |