2021-03-21 10:21:17 -04:00
|
|
|
# This workflow uses actions that are not certified by GitHub.
|
|
|
|
# They are provided by a third-party and are governed by
|
|
|
|
# separate terms of service, privacy policy, and support
|
|
|
|
# documentation.
|
|
|
|
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
|
|
|
|
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
|
|
|
|
|
|
|
|
name: Ruby
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ master ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ master ]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
|
2021-03-21 11:24:19 -04:00
|
|
|
continue-on-error: ${{ matrix.ruby-version == '3.0' || matrix.ruby-version == 'head' }}
|
2021-03-21 10:21:17 -04:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-06-03 09:49:44 -04:00
|
|
|
ruby-version: ['2.5', '2.6', '2.7', '3.0', 'head']
|
2021-03-21 10:21:17 -04:00
|
|
|
|
|
|
|
steps:
|
2021-10-18 03:07:02 -04:00
|
|
|
- uses: actions/checkout@v2.3.5
|
2021-04-11 12:05:14 -04:00
|
|
|
- name: Install libcurl dev (for ovirt native extensions)
|
|
|
|
run: sudo apt-get install libcurl4-openssl-dev
|
2021-03-21 10:21:17 -04:00
|
|
|
- name: Set up Ruby
|
|
|
|
uses: ruby/setup-ruby@v1
|
|
|
|
with:
|
|
|
|
ruby-version: ${{ matrix.ruby-version }}
|
|
|
|
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
|
|
|
- name: Install dependencies
|
|
|
|
run: bundle install
|
|
|
|
- name: Run tests
|
|
|
|
run: bundle exec rake
|