We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19813e1 commit 7e60128Copy full SHA for 7e60128
.github/workflows/rails_ci.yml
@@ -28,14 +28,17 @@ jobs:
28
env:
29
POSTGRES_USER: rails
30
POSTGRES_PASSWORD: password
31
+ options: >-
32
+ --health-cmd pg_isready
33
+ --health-interval 10s
34
+ --health-timeout 500ms
35
+ --health-retries 15
36
steps:
37
- uses: actions/checkout@v4
38
- name: Install dependencies
39
uses: ./.github/actions/setup-action
- - name: Create database
- run: bundle exec rails db:create:all
40
- name: Set up database schema
- run: bundle exec rails db:schema:load
41
+ run: bin/rails db:schema:load
42
- name: Run tests
43
run: bundle exec rspec
44
0 commit comments