release: cut the stable version #26
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-License-Identifier: Apache-2.0 | |
| name: CI | |
| on: | |
| push: | |
| branches: ["**"] | |
| pull_request: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ci-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| contracts: | |
| name: Migrations and contracts | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| - name: Run disposable PostgreSQL checks | |
| run: ./bin/test.sh | |
| - name: Validate core Compose | |
| env: | |
| CORE_POSTGRES_PASSWORD: core-ci-owner | |
| VIDO_CORE_PASSWORD: core-ci-vido | |
| SEARCHY_CORE_PASSWORD: core-ci-searchy | |
| QUOTO_CORE_PASSWORD: core-ci-quoto | |
| BRANCHY_CORE_PASSWORD: core-ci-branchy | |
| MAKEITMD_CORE_PASSWORD: core-ci-makeitmd | |
| VOICY_CORE_PASSWORD: core-ci-voicy | |
| run: docker compose -f compose.yaml config >/dev/null |