Skip to content

Merge pull request #61 from mathroule/support-iso-datetime #3

Merge pull request #61 from mathroule/support-iso-datetime

Merge pull request #61 from mathroule/support-iso-datetime #3

Workflow file for this run

name: Test
on: [ push, pull_request ]
jobs:
test:
name: Test (Ruby ${{ matrix.ruby-version }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby-version: [ '2.7' ]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Run test
run: bundle exec rake spec