Skip to content

Commit

Permalink
fix: use default postgres in CI (#391)
Browse files Browse the repository at this point in the history
* fix: use default postgres in action
  • Loading branch information
mayconamaroCW authored Mar 18, 2024
1 parent 36e9d6b commit f29846a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/_setup-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ jobs:
cargo install wait-service
- name: Run e2e tests
run: just ${{ inputs.test_command }}
run: ${{ inputs.test_command }}
2 changes: 1 addition & 1 deletion .github/workflows/e2e-contracts-postgres.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions .github/workflows/e2e-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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 }}
Expand Down

0 comments on commit f29846a

Please sign in to comment.