Resolve document types by reflection instead of throwing KeyNotFoundException #502
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: PR Check | |
| on: | |
| pull_request: | |
| branches: [ main, release/** ] | |
| paths-ignore: | |
| - '**.md' | |
| jobs: | |
| tests: | |
| uses: ./.github/workflows/tests.yml | |
| # Aggregate gate so a single "build" status check (required by branch | |
| # protection) reflects the result of all parallel test jobs. | |
| build: | |
| needs: tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: All tests passed | |
| run: echo "All database tests passed." |