Skip to content

v0.6.4

v0.6.4 #167

Workflow file for this run

name: test
on:
- push
jobs:
test:
strategy:
fail-fast: false
matrix:
ruby-version:
- jruby
- truffleruby
- truffleruby+graalvm
- '2.5'
- '2.7'
- '3.0'
- head
runs-on:
- ubuntu-latest
runs-on: ${{ matrix.runs-on }}
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- run: bundle exec rake test:each_format
- name: Report to Coveralls
uses: coverallsapp/[email protected]
with:
github-token: ${{ secrets.github_token }}
flag-name: "ruby: ${{ matrix.ruby-version }} os: ${{ matrix.runs-on }}"
parallel: true
finish:
needs: test
runs-on: ubuntu-latest
steps:
- name: Report completion to Coveralls
uses: coverallsapp/[email protected]
with:
github-token: ${{ secrets.github_token }}
parallel-finished: true