Fix portdb CI by hardcoding the new pg_dump restrict key that was add… #1
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: | |
| push: | |
| branches: ["develop", "release-*"] | |
| paths: | |
| - poetry.lock | |
| pull_request: | |
| paths: | |
| - poetry.lock | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| check-sdists: | |
| name: "Check locked dependencies have sdists" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0 | |
| - uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0 | |
| with: | |
| python-version: '3.x' | |
| - run: pip install tomli | |
| - run: ./scripts-dev/check_locked_deps_have_sdists.py |