Skip to content

CI against Ruby 3.1, 3.2, 3.3 #41

CI against Ruby 3.1, 3.2, 3.3

CI against Ruby 3.1, 3.2, 3.3 #41

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
ruby: ['2.6', '2.7', '3.0', '3.1', '3.2', '3.3']
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: bundle install --jobs 4 --retry 3
- name: Run test
run: bundle exec rspec
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
file: ./coverage/.resultset.json