Put DATABSE_URL in the default section #38
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
services: | |
postgres: | |
image: postgres:15 | |
env: | |
POSTGRES_DB: rails_test | |
POSTGRES_USER: rails | |
POSTGRES_PASSWORD: postgres | |
ports: | |
- 5432:5432 | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
steps: | |
- uses: actions/checkout@master | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: "3.2.2" | |
bundler-cache: true | |
- name: Lint ruby | |
run: bundle exec rubocop -c .rubocop.yml | |
- name: Set up Node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 18.16.0 | |
cache: "yarn" | |
- name: Install dependencies | |
run: yarn install --pure-lockfile | |
- name: Build assets | |
run: | | |
yarn build | |
yarn build:css | |
- name: Run tests | |
env: | |
RAILS_ENV: test | |
PGHOST: localhost | |
POSTGRES_DB: rails_test | |
POSTGRES_USER: rails | |
POSTGRES_PASSWORD: postgres | |
RAILS_MASTER_KEY: ${{ secrets.RAILS_MASTER_KEY }} | |
run: | | |
cp config/database.ci.yml config/database.yml | |
bundle exec rails test |