Skip to content

test *seemingly* working, pending close scrutiny + other stuff #289

test *seemingly* working, pending close scrutiny + other stuff

test *seemingly* working, pending close scrutiny + other stuff #289

Workflow file for this run

#
# Run unit tests.
#
name: Tests
on:
- push
jobs:
tests:
name: Test ${{ matrix.os }}, Ruby ${{ matrix.ruby }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- "ubuntu-22.04"
- "ubuntu-20.04"
- "macos-latest"
ruby:
- "2.6"
- "2.7"
- "3.0"
- "3.1"
- "3.2"
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: set up Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run Rspec
run: |
bundle exec rake spec