Skip to content

update benchmarks

update benchmarks #111

Workflow file for this run

name: Tests
on:
push:
branches: [ master ]
paths:
- 'lib/**'
- 'test/**'
- '.github/**'
- 'Rakefile'
pull_request:
branches: ['**']
paths:
- 'lib/**'
- 'test/**'
- '.github/**'
- 'Rakefile'
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
#ruby: [ head, jruby-head, truffleruby-head ]
ruby: [ head, truffleruby-head ]
# ruby: [ head ]
name: Ruby ${{ matrix.ruby }}
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler: none
- name: Run tests
run: rake test