fix: postgresql schema comparator handling views #5165
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
| on: | |
| pull_request: | |
| paths: | |
| - 'src/**' | |
| - 'docs/**' | |
| - 'examples/**' | |
| - 'README.md' | |
| push: | |
| branches: | |
| - "1.x" | |
| paths-ignore: | |
| - 'CHANGELOG.md' | |
| # See https://stackoverflow.com/a/72408109 | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| documentation-linter: | |
| runs-on: "ubuntu-latest" | |
| steps: | |
| - name: "Checkout" | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| persist-credentials: false | |
| - name: "Setup PHP Environment" | |
| uses: "./.github/actions/setup-php-env" | |
| with: | |
| php-version: "8.3" | |
| dependencies: "locked" | |
| coverage: "none" | |
| extensions: ':psr, bcmath, dom, hash, json, mbstring, xml, xmlwriter, xmlreader, zlib' | |
| cache-key-suffix: "-locked" | |
| - name: "Build Docs" | |
| run: "just docs" | |
| - name: Check for uncommitted changes | |
| run: | | |
| if [[ -n "$(git status --porcelain)" ]]; then | |
| echo "Uncommitted changes detected, please run \`just docs\` and commit the changes." | |
| git status | |
| exit 1 | |
| else | |
| echo "No uncommitted changes." | |
| fi | |
| - name: "MD Link Linter" | |
| uses: "docker://norberttech/md-link-linter:latest" | |
| with: | |
| entrypoint: "/composer/vendor/bin/mdlinklint" | |
| args: "--exclude=vendor --exclude=tests --exclude=examples --exclude=documentation ." |