1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/.github/workflows/ruby.yml

38 lines
1.2 KiB
YAML
Raw Normal View History

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:
- uses: actions/checkout@v2.3.5
- 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