From 276365ac6e0e61b575fe6fb4bc6351c8fa667b96 Mon Sep 17 00:00:00 2001 From: Mike Heft Date: Sun, 7 Jul 2024 12:34:08 -0600 Subject: [PATCH] more syntax --- .github/actions/run_rspec/action.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/actions/run_rspec/action.yaml b/.github/actions/run_rspec/action.yaml index 2905771..90ab1e5 100644 --- a/.github/actions/run_rspec/action.yaml +++ b/.github/actions/run_rspec/action.yaml @@ -26,7 +26,7 @@ runs: gem install bundler bundle install --jobs 4 --retry 3 - name: Setup PostgreSQL and Redis services - uses: "docker://postgres:16.1" + uses: docker://postgres:16.1 with: env: POSTGRES_USER: postgres @@ -50,10 +50,10 @@ runs: env: PGHOST: localhost PGUSER: postgres - PGPORT: ${{ job.services.postgres.ports[5432] }}" - PGPASSWORD: ${{ inputs.postgres-password }}" - REDIS_URL: "redis://localhost:6379/1" - GOOGLE_API_KEY: ${{ inputs.google-api-key }}" + PGPORT: ${{ job.services.postgres.ports[5432] }} + PGPASSWORD: ${{ inputs.postgres-password }} + REDIS_URL: redis://localhost:6379/1 + GOOGLE_API_KEY: ${{ inputs.google-api-key }} RAILS_ENV: test run: | bin/rails db:create db:migrate db:schema:load