Skip to content

Add option --dont-start and make current profile available as RubyProf::Profile.current #122

Add option --dont-start and make current profile available as RubyProf::Profile.current

Add option --dont-start and make current profile available as RubyProf::Profile.current #122

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: ['3.0', '3.1', '3.2', '3.3']
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"