Skip to content

ruby 3.3.5 support #117

ruby 3.3.5 support

ruby 3.3.5 support #117

Workflow file for this run

name: build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: [3.3.4, 3.2.5, 3.1.6]
steps:
- uses: actions/checkout@v4
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
- name: apt-get update
run: sudo apt-get update
- name: Install dependencies
run: sudo apt-get install libzmq3-dev
- name: Install gems
run: bundle install
- name: Run tests
run: bundle exec rake test integration
- name: Install appraisals
run: bundle exec appraisal install
- name: Run appraisals
run: bundle exec appraisal rake test integration