Skip to content

Poor Man's Type Checking in Arguments and Returns #25

Poor Man's Type Checking in Arguments and Returns

Poor Man's Type Checking in Arguments and Returns #25

Workflow file for this run

name: Simplecov
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
permissions:
checks: write
jobs:
code_coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6.0.2
- name: Set up Ruby
uses: ruby/setup-ruby@v1.305.0
with:
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Build and test with Rake
run: COVERAGE=true bundle exec rake
- name: SimpleCov+ Action
uses: joshmfrankel/simplecov-check-action@1.0.0
with:
minimum_suite_coverage: 90
minimum_file_coverage: 90
github_token: ${{ secrets.GITHUB_TOKEN }}