Skip to content

Commit

Permalink
Test with ruby 3.1 and 3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jrafanie committed Feb 13, 2024
1 parent bafa848 commit fb3fc55
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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

0 comments on commit fb3fc55

Please sign in to comment.