You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
I use ikalnytskyi/action-setup-postgres@v7 to setup Postgres in my Github Action CI/CD pipeline, and I got the error below:
Please find below the CI/CD pipeline:
name: CI/CD Pipeline on: push: branches: - '**' # Runs on pushes to any branch env: AWS_ACCOUNT_ID: XXXXXXXXX jobs: test: name: Run Tests runs-on: ubuntu-latest steps: - name: Check out repository code uses: actions/checkout@v4 - name: Install uv uses: astral-sh/setup-uv@v4 with: version: "latest" - name: Enable caching uses: astral-sh/setup-uv@v4 with: enable-cache: true - name: Setup Python uses: actions/setup-python@v5 with: python-version-file: "pyproject.toml" - name: Install dependencies run: | uv sync --all-extras --dev - name: Setup PostgreSQL uses: ikalnytskyi/action-setup-postgres@v7 with: username: jason password: argos database: test_db port: 5432 postgres-version: "15" ssl: "on" id: postgres - name: Run tests run: | uv run pytest env: CONNECTION_STR: ${{ steps.postgres.outputs.connection-uri }}Beta Was this translation helpful? Give feedback.
All reactions