From fb3fc5512d45bac76314810a5fff7b17b54ee545 Mon Sep 17 00:00:00 2001 From: Joe Rafaniello Date: Tue, 13 Feb 2024 10:41:39 -0500 Subject: [PATCH] Test with ruby 3.1 and 3.0 --- .github/workflows/ci.yaml | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 6a73015..c52f958 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -1,11 +1,10 @@ +--- name: CI - on: push: pull_request: schedule: - - cron: '0 0 * * 0' - + - cron: 0 0 * * 0 jobs: ci: runs-on: ubuntu-latest @@ -16,33 +15,32 @@ jobs: - '2.6' - '2.7' - '3.0' + - '3.1' rails-version: - '6.0' - '6.1' include: - ruby-version: '3.1' rails-version: '6.1' - # rails 7 requires ruby 2.7+ - - ruby-version: '2.7' - rails-version: '7.0' - ruby-version: '3.0' rails-version: '7.0' - ruby-version: '3.1' rails-version: '7.0' env: - TEST_RAILS_VERSION: ${{ matrix.rails-version }} - CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} + TEST_RAILS_VERSION: "${{ matrix.rails-version }}" + CC_TEST_REPORTER_ID: "${{ secrets.CC_TEST_REPORTER_ID }}" steps: - uses: actions/checkout@v4 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: - ruby-version: ${{ matrix.ruby-version }} + ruby-version: "${{ matrix.ruby-version }}" bundler-cache: true timeout-minutes: 30 - name: Run tests run: bundle exec rake - name: Report code coverage - if: ${{ github.ref == 'refs/heads/master' && matrix.ruby-version == '3.0' && matrix.rails-version == '6.1' }} + if: "${{ github.ref == 'refs/heads/master' && matrix.ruby-version == '3.0' && + matrix.rails-version == '6.1' }}" continue-on-error: true uses: paambaati/codeclimate-action@v5