Skip to content

Commit

Permalink
Make postgres_version action input default to a string
Browse files Browse the repository at this point in the history
This is "required" by GitHub Actions, though they must do some coersion
on their side.
  • Loading branch information
tristan957 committed May 22, 2024
1 parent 8901ce9 commit 900f391
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/neon-project-create/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ inputs:
default: aws-us-east-2
postgres_version:
description: 'Postgres version; default is 15'
default: 15
default: '15'
api_host:
description: 'Neon API host'
default: console-stage.neon.build
Expand Down

1 comment on commit 900f391

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

3190 tests run: 3049 passed, 1 failed, 140 skipped (full report)


Failures on Postgres 14

  • test_sharding_autosplit[github-actions-selfhosted]: release
# Run all failed tests locally:
scripts/pytest -vv -n $(nproc) -k "test_sharding_autosplit[release-pg14-github-actions-selfhosted]"
Flaky tests (3)

Postgres 15

  • test_pageserver_restarts_under_worload: release

Postgres 14

  • test_pageserver_restarts_under_worload: debug
  • test_tenant_delete_smoke: release

Code coverage* (full report)

  • functions: 31.3% (6415 of 20478 functions)
  • lines: 48.0% (49318 of 102655 lines)

* collected from Rust tests only


The comment gets automatically updated with the latest test results
900f391 at 2024-05-22T15:54:36.870Z :recycle:

Please sign in to comment.