Skip to content

Bump rspec from 3.12.0 to 3.13.0 #84

Bump rspec from 3.12.0 to 3.13.0

Bump rspec from 3.12.0 to 3.13.0 #84

Workflow file for this run

name: Ruby
on:
push:
branches: [ main ]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby-version: [ 3, 3.1, "3.0" ]
name: Ruby ${{ matrix.ruby-version }}
steps:
- name: clone ${{ github.repository }}
uses: actions/checkout@v4
- name: setup Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: run tests
run: bundle exec rspec
- name: upload code coverage
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}