chore: add a test for polymorphic many_to_many relationship updates (… #3232
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
| # SPDX-FileCopyrightText: 2019 ash_postgres contributors <https://github.com/ash-project/ash_postgres/graphs/contributors> | |
| # | |
| # SPDX-License-Identifier: MIT | |
| name: CI | |
| on: | |
| push: | |
| tags: | |
| - "v*" | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| ash-ci: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| postgres-version: ["14", "15", "16", "17", "18"] | |
| uses: ash-project/ash/.github/workflows/ash-ci.yml@main | |
| with: | |
| postgres: true | |
| postgres-version: ${{ matrix.postgres-version }} | |
| publish-docs: ${{ matrix.postgres-version == '16' }} | |
| release: ${{ matrix.postgres-version == '16' }} | |
| igniter-upgrade: ${{matrix.postgres-version == '16'}} | |
| reuse: true | |
| secrets: | |
| hex_api_key: ${{ secrets.HEX_API_KEY }} |