Merge pull request #206 from grodowski/ruby-3.3.0 #234
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: Ruby | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ruby: ['3.3', '3.0'] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 # fetch all since test fixtures depend on history | |
- name: Set up Ruby ${{ matrix.ruby }} | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
- name: Build and test with Rake | |
run: | | |
gem install bundler -v 2.4.22 | |
gem install undercover --no-doc | |
bundle install --jobs 4 --retry 3 | |
bundle exec rake | |
- name: undercover (local) | |
run: | | |
git fetch --update-head-ok origin master:master | |
undercover --compare master | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: undercover.lcov | |
path: coverage/lcov/undercover.lcov | |
coverage: | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- uses: actions/download-artifact@v3 | |
with: | |
name: undercover.lcov | |
- name: Upload coverage | |
run: | | |
ruby -e "$(curl -s https://undercover-ci.com/uploader.rb)" -- \ | |
--repo grodowski/undercover \ | |
--commit $GITHUB_SHA \ | |
--lcov /home/runner/work/undercover/undercover/undercover.lcov |