Skip to content

paramters changed

paramters changed #15

Workflow file for this run

name: Ruby
on: [push]
jobs:
rspec:
runs-on: ubuntu-latest
env:
BUNDLE_WITH: test
BUNDLE_WITHOUT: development
strategy:
fail-fast: false
matrix:
ruby-version: ['2.7']
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Run tests
run: bundle exec rspec
- uses: joshmfrankel/simplecov-check-action@main
with:
minimum_file_coverage: 85
minimum_suite_coverage: 90
github_token: ${{ secrets.GITHUB_TOKEN }}