Skip to content

Commit

Permalink
more syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeheft committed Jul 7, 2024
1 parent 4b2370b commit 276365a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/actions/run_rspec/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 276365a

Please sign in to comment.