Skip to content

Merge pull request #139 from joshcooper/mend #25

Merge pull request #139 from joshcooper/mend

Merge pull request #139 from joshcooper/mend #25

Workflow file for this run

name: RSpec tests
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
rspec_tests:
name: RSpec (Ruby ${{ matrix.ruby }})
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [ '3.1', '3.2', '4.0' ]
steps:
- name: Checkout current PR
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Ruby version ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rspec spec