We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd8409a commit 986d9e1Copy full SHA for 986d9e1
.github/workflows/simple.yml
@@ -33,17 +33,12 @@ jobs:
33
34
- name: Set up PostgreSQL
35
uses: ikalnytskyi/action-setup-postgres@v3
36
+ id: postgres
37
with:
38
username: ci
39
password: sw0rdfish
40
database: test
41
- - name: PostgreSQL Connection string
42
- shell: bash
43
- run: |
44
- echo "$CONNECTION_URI"
45
- echo "DATABASE_CONNSTRING=$CONNECTION_URI" >> $GITHUB_ENV
46
-
47
- name: Checkout
48
uses: actions/checkout@v3.0.2
49
@@ -59,3 +54,5 @@ jobs:
59
54
60
55
- name: Test
61
56
run: cabal test all --enable-tests --test-show-details=direct
57
+ env:
58
+ DATABASE_CONNSTRING: ${{ steps.postgres.outputs.connection-uri }}
0 commit comments