Skip to content

Commit

Permalink
Merge pull request #65 from jrafanie/test_ruby31_and_30
Browse files Browse the repository at this point in the history
Test with ruby 3.1 and 3.0
  • Loading branch information
Fryguy committed Feb 13, 2024
2 parents f64e94c + 9c4689c commit 052c467
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 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 @@ -15,19 +14,20 @@ jobs:
- '2.6'
- '2.7'
- '3.0'
- '3.1'
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
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' }}
if: "${{ github.ref == 'refs/heads/master' && matrix.ruby-version == '3.0' }}"
continue-on-error: true
uses: paambaati/codeclimate-action@v5

0 comments on commit 052c467

Please sign in to comment.