Skip to content

DEVREL-924 Use fallback files from .github repo #65

DEVREL-924 Use fallback files from .github repo

DEVREL-924 Use fallback files from .github repo #65

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1
bundler: latest
- name: Install dependencies
run: bundle install
- name: Run tests
run: bundle exec rake
- name: Fix test result for code coverage
run: sed -i 's/"line"/"covered_percent"/g' coverage/.last_run.json
- name: Report coverage
uses: devmasx/[email protected]
with:
type: simplecov
result_path: coverage/.last_run.json
min_coverage: 85
token: ${{ github.token }}