Skip to content

Day Repeater start fix #3

Day Repeater start fix

Day Repeater start fix #3

Workflow file for this run

name: test
on: [ push, pull_request ]
jobs:
test:
if: " ! (contains(github.event.head_commit.message, 'skip ci') || contains(github.event.head_commit.message, 'ci skip'))"
name: ${{matrix.ruby}} on ${{matrix.os}}
strategy:
matrix:
os: [ ubuntu-latest ]
ruby: [ 2.3, 2.4, 2.5, 2.6, 2.7, '3.0', 3.1, 3.2, jruby-9.2, jruby-9.3, truffleruby ]
experimental: [ false ]
fail-fast: false
runs-on: ${{matrix.os}}
continue-on-error: ${{matrix.experimental}}
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{matrix.ruby}}
bundler-cache: true
- run: bundle exec rake