Skip to content

Prepare for v1.1.0 release #13

Prepare for v1.1.0 release

Prepare for v1.1.0 release #13

Workflow file for this run

---
name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
env:
CC_TEST_REPORTER_ID: ${{secrets.CC_TEST_REPORTER_ID}}
strategy:
fail-fast: false
matrix:
ruby: [ 2.4, 2.5, 2.6, 2.7, 3.0, 3.1, 3.2, 3.3, jruby, truffleruby ]
steps:
- uses: actions/checkout@v4
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Build and test with RSpec
run: bundle exec rake spec
- name: Publish code coverage
uses: paambaati/[email protected] # Locking to specific version b/c: https://github.com/paambaati/codeclimate-action/issues/142
if: matrix.ruby == '3.3' # Ruby 2.4 breaks the CC uploader. Also, we only need to upload one report.