Skip to content

Add specs to reach 100% branch coverage #35

Add specs to reach 100% branch coverage

Add specs to reach 100% branch coverage #35

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
BUNDLE_WITHOUT: "development"
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
ruby: [ ruby-3.2, ruby-3.3, ruby-3.4, ruby-4.0 ]
os: [ ubuntu-latest, windows-latest ]
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: bundle exec rspec
run: bundle exec rspec --format progress --force-colour
- name: Prepare Coveralls test coverage report
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
flag-name: "${{ matrix.ruby }} @${{ matrix.os }}"
parallel: true
coveralls:
needs: test
runs-on: ubuntu-latest
steps:
- name: Finalize Coveralls test coverage report
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel-finished: true
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2
bundler-cache: true
- name: bundle exec rubocop
run: bundle exec rubocop --format progress --color