Skip to content

add sig/fibonacci.rbs #97

add sig/fibonacci.rbs

add sig/fibonacci.rbs #97

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:
# lib/compsci/graph.rb uses new-for-3.2 Data class
# ruby: [ '2.7', head, jruby-head, truffleruby-head ]
ruby: [ head ]
name: Ruby ${{ matrix.ruby }}
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler: none
- name: Run tests
run: rake test