Skip to content

Merge pull request #33 from Pyronix/32-handle-rdate-as-specified-in-r… #11

Merge pull request #33 from Pyronix/32-handle-rdate-as-specified-in-r…

Merge pull request #33 from Pyronix/32-handle-rdate-as-specified-in-r… #11

Workflow file for this run

name: Ruby
on:
push:
branches:
- main
- master
pull_request:
branches:
- main
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby:
- 3.0.6
- 3.1.4
- 3.2.2
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run rspec tests
run: bundle exec rake spec