Skip to content

Commit

Permalink
Add CI job for Ruby 3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Raou1d committed Feb 5, 2021
1 parent dd390e8 commit 914b6e8
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,22 @@ name: Ruby
on: [push, pull_request]

jobs:
build-ruby-30:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- name: Set up Ruby 3.0
uses: actions/setup-ruby@v1
with:
ruby-version: 3.0.x
- name: Build and test with Rake
run: |
gem install bundler
bundle install --jobs 4 --retry 3
bundle exec rake
build-ruby-26:

runs-on: ubuntu-latest
Expand Down

0 comments on commit 914b6e8

Please sign in to comment.