From 4735226248ee4f93ac2ffda472addde94a1fe9c1 Mon Sep 17 00:00:00 2001 From: Brian Pursley Date: Tue, 16 Apr 2024 14:16:55 -0400 Subject: [PATCH] Build --- .github/workflows/build.yml | 4 ++-- Npgmq.Test/README.md | 4 ++++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 18db0d0..6edb439 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -30,8 +30,8 @@ jobs: if: startsWith(github.ref, 'refs/tags/v') run: echo "VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_ENV - - name: Echo the version - run: echo "Version is $VERSION" + - name: Print environment variables + run: env - name: Restore dependencies run: dotnet restore diff --git a/Npgmq.Test/README.md b/Npgmq.Test/README.md index d11dfaa..a360a56 100644 --- a/Npgmq.Test/README.md +++ b/Npgmq.Test/README.md @@ -3,6 +3,10 @@ This project contains the tests for the Npgmq library. It spins up a PostgreSQL server in docker, installs the necessary extensions, creates a database, and runs the tests against it. +## Configration + +The tests require a connection string, named `Test`, to be configured. + ## Helper Scripts ### Start database, run tests, and stop database (All in one)