Skip to content

Ruby 3.3

Ruby 3.3 #209

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:15.2
env:
POSTGRES_PASSWORD: password
mongo:
image: mongo:4.4.1
redis:
image: redis:7.0
options: --entrypoint redis-server
container:
image: ruby:3.3.0
env:
BASE_URL: 'http://example.com'
DATABASE_URL: postgresql://postgres:password@postgres
MONGO_HOST: mongo
RAILS_ENV: test
REDIS_URL: redis://redis:6379
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '14.x'
- uses: actions/cache@v3
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-gems-
- name: Install dependencies
run: |
gem install bundler
bundle config set without 'development production'
bundle config set path vendor/bundle
bundle install --jobs 4 --retry 3
- name: Setup
run: |
bin/rails db:create db:migrate
- name: Run specs
run: |
bundle exec rake