Skip to content

Bump actions/checkout from 3 to 4 (#39) #117

Bump actions/checkout from 3 to 4 (#39)

Bump actions/checkout from 3 to 4 (#39) #117

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
rspec:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ['3.2', '3.1', '3.0']
steps:
- name: Checkout the repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run RSpec
run: |
bundle exec rake coverage
- name: Upload coverage report
uses: codecov/codecov-action@v3
with:
name: ${{ matrix.ruby }}
file: ./coverage/coverage.xml
fail_ci_if_error: false