Skip to content

Added yyyy-mm-ddThh:nn format #19

Added yyyy-mm-ddThh:nn format

Added yyyy-mm-ddThh:nn format #19

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: ["2.5", "2.6", "2.7", "3.0", "3.1", "3.2", jruby-9.2, jruby-9.3, jruby-9.4]
channel: ['stable']
include:
- ruby: 'ruby-head'
channel: 'experimental'
- ruby: 'jruby-head'
channel: 'experimental'
continue-on-error: ${{ matrix.channel != 'stable' }}
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true # 'bundle install' and cache gems
ruby-version: ${{ matrix.ruby }}
- name: Run tests
run: bundle exec rspec