Skip to content

chore(main): release 2.1.3 #60

chore(main): release 2.1.3

chore(main): release 2.1.3 #60

name: Continuous Integration
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
env:
# SimpleCov suggests setting the JRuby --debug flag to ensure that coverage
# results from JRuby are complete.
JRUBY_OPTS: --debug
# Supported platforms / Ruby versions:
# - Ubuntu: MRI (3.1, 3.2, 3.3), TruffleRuby (24), JRuby (9.4)
# - Windows: MRI (3.1), JRuby (9.4)
jobs:
build:
name: Ruby ${{ matrix.ruby }} on ${{ matrix.operating-system }}
runs-on: ${{ matrix.operating-system }}
continue-on-error: true
env:
FAIL_ON_LOW_COVERAGE: ${{ matrix.fail_on_low_coverage }}
strategy:
fail-fast: false
matrix:
ruby: ["3.1", "3.4"]
operating-system: [ubuntu-latest]
fail_on_low_coverage: ["true"]
include:
- ruby: "jruby-9.4"
operating-system: ubuntu-latest
fail_on_low_coverage: "false"
- ruby: "truffleruby-24"
operating-system: ubuntu-latest
fail_on_low_coverage: "false"
- ruby: "3.1"
operating-system: windows-latest
fail_on_low_coverage: "false"
- ruby: "jruby-9.4"
operating-system: windows-latest
fail_on_low_coverage: "false"
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Initialize Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run rake
run: bundle exec rake