Skip to content

Commit

Permalink
Work on yaml syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeheft committed Jul 7, 2024
1 parent 126f95c commit e1f9b90
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 @@ -19,7 +19,7 @@ runs:
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "${{ inputs.ruby-version }}"
ruby-version: ${{ inputs.ruby-version }}
- name: Install dependencies
shell: bash
run: |
Expand All @@ -30,7 +30,7 @@ runs:
with:
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: "${{ inputs.postgres-password }}"
POSTGRES_PASSWORD: ${{ inputs.postgres-password }}
POSTGRES_DB: postgres
ports:
- "5432:5432"
Expand All @@ -50,10 +50,10 @@ runs:
env:
PGHOST: localhost
PGUSER: postgres
PGPORT: "${{ job.services.postgres.ports[5432] }}"
PGPASSWORD: "${{ inputs.postgres-password }}"
PGPORT: ${{ job.services.postgres.ports[5432] }}"
PGPASSWORD: ${{ inputs.postgres-password }}"
REDIS_URL: "redis://localhost:6379/1"
GOOGLE_API_KEY: "${{ inputs.google-api-key }}"
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 e1f9b90

Please sign in to comment.