#65 Fix regression related to require_relative
and fix integration …
#5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Generate & Upload Code Coverage | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
test: | |
env: | |
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: head | |
bundler-cache: true # runs 'bundle install' and caches installed gems automatically | |
- uses: paambaati/[email protected] | |
with: | |
coverageCommand: bundle exec rake | |
debug: true |