Use actual YAML syntax for env vars

I always mess this up when moving from shell to YAML configs
This commit is contained in:
Sean M. Collins 2025-03-10 17:54:46 -04:00
parent 48e7139e26
commit 46a311174f

View File

@ -52,13 +52,13 @@ jobs:
zig build -Denvironment=testing jetzig:database:create zig build -Denvironment=testing jetzig:database:create
zig build -Denvironment=testing jetzig:test zig build -Denvironment=testing jetzig:test
env: env:
JETQUERY_HOSTNAME='localhost' JETQUERY_HOSTNAME: 'localhost'
JETQUERY_USERNAME='postgres' JETQUERY_USERNAME: 'postgres'
JETQUERY_PASSWORD='postgres' JETQUERY_PASSWORD: 'postgres'
JETQUERY_DATABASE='test' JETQUERY_DATABASE: 'test'
# Assume a small amount of connections are allowed # Assume a small amount of connections are allowed
# into postgres # into postgres
JETQUERY_POOL_SIZE=1 JETQUERY_POOL_SIZE: 1
- name: Build artifacts - name: Build artifacts
if: ${{ matrix.os == 'ubuntu-latest' }} if: ${{ matrix.os == 'ubuntu-latest' }}