Skip to content

Enable verbose test output. #99

Enable verbose test output.

Enable verbose test output. #99

Workflow file for this run

name: ruby-prof
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
tests:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
ruby: ['2.7', '3.0', '3.1', '3.2']
include:
- { os: windows-latest , ruby: mswin }
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Build
run: bundle exec rake compile
- name: Test
run: bundle exec rake test
env:
GITHUB_ACTIONS: true
TESTOPTS: "-v"