Skip to content

v1.0.0

v1.0.0 #1

Workflow file for this run

name: Ruby
on:
push:
branches:
- main
pull_request:
schedule:
- cron: '0 4 * * *'
jobs:
build:
runs-on: ubuntu-latest
name: Ruby ${{ matrix.ruby }} / Rails ${{ matrix.rails_version }}
strategy:
matrix:
ruby:
- ruby-head
- '3.3'
- '3.2'
- '3.1'
rails_version:
- edge
- '7.2'
- '7.1'
- '7.0'
env:
RAILS_VERSION: ${{ matrix.rails_version }}
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
continue-on-error: ${{ (matrix.ruby_version == 'ruby-head')}}
- name: Run the default task
run: bundle exec rake
continue-on-error: ${{ (matrix.ruby_version == 'ruby-head')}}