Skip to content

CI tweaks

CI tweaks #243

Workflow file for this run

name: Ruby Build
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ubuntu-latest]
version: ['3.0', '3.1', '3.2', '3.3', '3.4', 'head']
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.version }}
bundler-cache: true
- name: Run RSpec
continue-on-error: ${{ matrix.ruby == 'head' }}
run: bundle exec rspec
- name: Gem build
run: gem build *.gemspec