Bump Rails from 7.0.6 to 7.0.7 #101
Workflow file for this run
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: Run Rspec | |
on: | |
pull_request: | |
workflow_dispatch: | |
env: | |
DATABASE_URL_TEST: postgresql://eras:eras@localhost/eras_test | |
RAILS_ENV: test | |
jobs: | |
tests: | |
name: Run Tests | |
runs-on: ubuntu-latest | |
services: | |
postgres: | |
image: timescale/timescaledb:2.11.0-pg15 | |
env: | |
POSTGRES_PASSWORD: eras | |
POSTGRES_USER: eras | |
ports: | |
- 5432:5432 | |
options: | |
--health-cmd pg_isready | |
--health-interval 10ms | |
--health-timeout 500ms | |
--health-retries 15 | |
steps: | |
- name: Checkout code | |
uses: actions/[email protected] | |
- name: Check for focused specs | |
run: ./scripts/no_focus.sh | |
- name: Setup Ruby and install gems | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '3.2.2' | |
bundler-cache: true | |
- name: Setup test database | |
run: bin/rails db:create | |
- name: Run tests | |
run: bundle exec rspec |