Skip to content

fix: removed truthy as obsolete and unsupported #115

fix: removed truthy as obsolete and unsupported

fix: removed truthy as obsolete and unsupported #115

Workflow file for this run

name: Ruby specs
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
permissions:
contents: read
jobs:
test:
name: Tests
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['2.6', '2.7', '3.0', '3.1', '3.2', 'jruby-9.3', 'jruby-9.4']
channel: ['stable']
include:
- ruby-version: 'head'
channel: 'experimental'
- ruby-version: 'jruby-head'
channel: 'experimental'
continue-on-error: ${{ matrix.channel != 'stable' }}
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Run specs
run: JRUBY_OPTS="--dev --debug" bundle exec rake spec
- name: Coveralls Parallel
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}
flag-name: run-${{ matrix.ruby-version }}
parallel: true
coverage:
name: Coverage
needs: test
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}
parallel-finished: true