build(deps): bump ruby/setup-ruby from 1.205.0 to 1.206.0 #238
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Ruby specs | |
on: [push, pull_request] | |
jobs: | |
test: | |
name: tests | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
ruby: ['3.0', '3.1', head, truffleruby, truffleruby-head] | |
runs-on: ${{ matrix.os }} | |
continue-on-error: true | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/[email protected] | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
# bundler-cache: true | |
- name: Get the newest rubygems version to rid ourselves of warnings | |
run: gem update --system --no-document | |
- name: Install bundler | |
run: gem i bundler --no-document | |
- name: Install dependencies | |
run: | | |
bundle config set --local without benchmark | |
bundle install --jobs=3 | |
- name: RSpec testing | |
run: | | |
JRUBY_OPTS="--dev --debug" bundle exec rspec --color --format documentation | |
- name: Coveralls Parallel | |
uses: coverallsapp/[email protected] | |
with: | |
github-token: ${{ secrets.github_token }} | |
flag-name: run-${{ matrix.ruby-version }} | |
path-to-lcov: ./coverage/lcov/yandex360.lcov | |
parallel: true | |
coverage: | |
name: Coverage | |
needs: test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Coveralls Finished | |
uses: coverallsapp/[email protected] | |
with: | |
github-token: ${{ secrets.github_token }} | |
path-to-lcov: ${{ github.workspace }}/coverage/lcov.info | |
parallel-finished: true |