From af63e3eb9551653c88a7c4b6ae8bd8abb84b4388 Mon Sep 17 00:00:00 2001 From: Andrew Tomaka Date: Tue, 5 Oct 2021 21:34:40 -0400 Subject: [PATCH] Ruby 3 (#21) --- .github/workflows/ruby.yml | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index 723889e..fbadd69 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -8,9 +8,9 @@ jobs: steps: - uses: actions/checkout@v1 - name: Set up Ruby 2.7 - uses: actions/setup-ruby@v1 + uses: ruby/setup-ruby@v1 with: - ruby-version: 2.7.x + ruby-version: 2.7 - name: Build and test with Rake run: | gem install bundler @@ -21,12 +21,12 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - ruby_version: [2.4.x, 2.5.x, 2.6.x, 2.7.x] + ruby_version: [2.4, 2.5, 2.6, 2.7, 3.0] steps: - uses: actions/checkout@v1 - name: Set up Ruby ${{ matrix.ruby_version }} - uses: actions/setup-ruby@v1 + uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby_version }} - name: Build and test with Rake @@ -37,12 +37,15 @@ jobs: rails: runs-on: ubuntu-latest + strategy: + matrix: + ruby_version: [2.5, 2.6, 2.7, 3.0] steps: - uses: actions/checkout@v1 - - name: Set up Ruby 2.7 - uses: actions/setup-ruby@v1 + - name: Set up Ruby ${{ matrix.ruby_version }} + uses: ruby/setup-ruby@v1 with: - ruby-version: 2.7.x + ruby-version: ${{ matrix.ruby_version }} - name: Test gem in Rails application run: | cd spec/rails