Skip to content

Merge pull request #64 from thecodecrate/fix-rspec-main #6

Merge pull request #64 from thecodecrate/fix-rspec-main

Merge pull request #64 from thecodecrate/fix-rspec-main #6

Workflow file for this run

name: RSpec Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ['3.0', '3.1', '3.2']
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run tests
run: bundle exec rspec