Skip to content

run GitHub tests on ruby 3.3.5 #119

run GitHub tests on ruby 3.3.5

run GitHub tests on ruby 3.3.5 #119

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.5, 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