Merge pull request #303 from oauth-xx/dependabot/bundler/rubocop-thre… #143
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: Code Coverage | |
env: | |
CI_CODECOV: true | |
COVER_ALL: true | |
on: | |
push: | |
branches: | |
- 'main' | |
- '*-maintenance' | |
- '*-dev' | |
- '*-stable' | |
tags: | |
- '!*' # Do not execute on tags | |
pull_request: | |
branches: | |
- '*' | |
# Allow manually triggering the workflow. | |
workflow_dispatch: | |
# Cancels all previous workflow runs for the same branch that have not yet completed. | |
concurrency: | |
# The concurrency group contains the workflow name and the branch name. | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
name: Specs with Coverage - Ruby ${{ matrix.ruby }} ${{matrix.gemfile}} ${{ matrix.name_extra || '' }} | |
env: # $BUNDLE_GEMFILE must be set at the job level, so it is set for all steps | |
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile | |
if: "!contains(github.event.commits[0].message, '[ci skip]') && !contains(github.event.commits[0].message, '[skip ci]')" | |
strategy: | |
fail-fast: false | |
matrix: | |
experimental: [false] | |
gemfile: | |
- a7 | |
rubygems: | |
- latest | |
bundler: | |
- latest | |
ruby: | |
- "2.7" | |
runs-on: ubuntu-latest | |
continue-on-error: ${{ matrix.experimental || endsWith(matrix.ruby, 'head') }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install cURL Headers | |
run: | | |
sudo apt-get update | |
sudo apt-get -y --fix-missing install libcurl4-openssl-dev | |
- uses: amancevice/setup-code-climate@v0 | |
name: CodeClimate Install | |
if: matrix.ruby == '2.7' && github.event_name != 'pull_request' && always() | |
with: | |
cc_test_reporter_id: ${{ secrets.CC_TEST_REPORTER_ID }} | |
- name: Setup Ruby & Bundle | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
rubygems: ${{ matrix.rubygems }} | |
bundler: ${{ matrix.bundler }} | |
bundler-cache: true | |
- name: CodeClimate Pre-build Notification | |
run: cc-test-reporter before-build | |
if: matrix.ruby == '2.7' && github.event_name != 'pull_request' && always() | |
continue-on-error: ${{ matrix.experimental != 'false' }} | |
- name: Run tests | |
run: bundle exec rake test | |
- name: CodeClimate Post-build Notification | |
run: cc-test-reporter after-build | |
if: matrix.ruby == '2.7' && github.event_name != 'pull_request' && always() | |
continue-on-error: ${{ matrix.experimental != 'false' }} | |
- name: Code Coverage Summary Report | |
uses: irongut/[email protected] | |
with: | |
filename: ./coverage/coverage.xml | |
badge: true | |
fail_below_min: true | |
format: markdown | |
hide_branch_rate: true | |
hide_complexity: true | |
indicators: true | |
output: both | |
thresholds: '78 40' | |
continue-on-error: ${{ matrix.experimental != 'false' }} | |
- name: Add Coverage PR Comment | |
uses: marocchino/sticky-pull-request-comment@v2 | |
if: matrix.ruby == '2.7' && always() | |
with: | |
recreate: true | |
path: code-coverage-results.md | |
continue-on-error: ${{ matrix.experimental != 'false' }} | |
- name: Coveralls | |
uses: coverallsapp/github-action@master | |
if: matrix.ruby == '2.7' && github.event_name != 'pull_request' && always() | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
continue-on-error: ${{ matrix.experimental != 'false' }} | |
# Using the codecov gem instead. | |
# - name: CodeCov | |
# uses: codecov/codecov-action@v2 | |
# if: matrix.ruby == '2.7' && github.event_name != 'pull_request' && always() | |
# with: | |
# files: ./coverage/coverage.xml | |
# flags: unittests | |
# name: codecov-upload | |
# fail_ci_if_error: true | |
# continue-on-error: ${{ matrix.experimental != 'false' }} |