From c7d167ef98b7afa0a6de668e2e4cb267e5335ade Mon Sep 17 00:00:00 2001 From: Alex Sherman Date: Tue, 7 Sep 2021 12:20:18 +0500 Subject: [PATCH] Add auto-tests for ruby 3.0 --- .github/workflows/ruby.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index 1a986169e..4ff7d7e6f 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -17,7 +17,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-18.04] - ruby: [ 2.7 ] + ruby: [ 2.7, 3.0 ] runs-on: ${{ matrix.os }} continue-on-error: ${{ endsWith(matrix.ruby, 'head') || matrix.ruby == 'debug' }} steps: @@ -85,6 +85,10 @@ jobs: path: coverage/codeclimate.${{ matrix.ruby }}.json upload_coverage: + strategy: + fail-fast: false + matrix: + ruby: [ 2.7, 3.0 ] runs-on: ubuntu-18.04 env: @@ -102,7 +106,7 @@ jobs: - uses: actions/download-artifact@v2.0.10 with: - name: coverage-2.7 + name: coverage-${{ matrix.ruby }} path: coverage - name: Aggregate & upload results to Code Climate