From 46a311174fbf3447ea956734e848afd58451078a Mon Sep 17 00:00:00 2001 From: "Sean M. Collins" Date: Mon, 10 Mar 2025 17:54:46 -0400 Subject: [PATCH] Use actual YAML syntax for env vars I always mess this up when moving from shell to YAML configs --- .github/workflows/CI.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 691a17c..623f117 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -52,13 +52,13 @@ jobs: zig build -Denvironment=testing jetzig:database:create zig build -Denvironment=testing jetzig:test env: - JETQUERY_HOSTNAME='localhost' - JETQUERY_USERNAME='postgres' - JETQUERY_PASSWORD='postgres' - JETQUERY_DATABASE='test' + JETQUERY_HOSTNAME: 'localhost' + JETQUERY_USERNAME: 'postgres' + JETQUERY_PASSWORD: 'postgres' + JETQUERY_DATABASE: 'test' # Assume a small amount of connections are allowed # into postgres - JETQUERY_POOL_SIZE=1 + JETQUERY_POOL_SIZE: 1 - name: Build artifacts if: ${{ matrix.os == 'ubuntu-latest' }}