-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: use default postgres in CI (#391)
* fix: use default postgres in action
- Loading branch information
1 parent
36e9d6b
commit f29846a
Showing
3 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,4 +39,4 @@ jobs: | |
run: just setup | ||
|
||
- name: Run e2e tests | ||
run: just contracts-test-stratus-postgres | ||
run: PERM_STORAGE=postgres://postgres:[email protected]:5432/stratus just contracts-test-stratus-postgres |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ jobs: | |
name: E2E Stratus in-memory | ||
uses: ./.github/workflows/_setup-e2e.yml | ||
with: | ||
test_command: 'e2e-stratus' | ||
test_command: 'just e2e-stratus' | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-inmemory-${{ github.ref || github.run_id }} | ||
|
@@ -21,7 +21,7 @@ jobs: | |
name: E2E Stratus Postgres | ||
uses: ./.github/workflows/_setup-e2e.yml | ||
with: | ||
test_command: 'e2e-stratus-postgres' | ||
test_command: 'PERM_STORAGE=postgres://postgres:[email protected]:5432/stratus just e2e-stratus-postgres' | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-postgres-${{ github.ref || github.run_id }} | ||
|