Skip to content

Change coveralls to coveralls_reborn dependency to allow sending cove… #19

Change coveralls to coveralls_reborn dependency to allow sending cove…

Change coveralls to coveralls_reborn dependency to allow sending cove… #19

Workflow file for this run

---
name: CI
on:
push:
branches:
- master
paths-ignore:
- "bin/**"
- "examples/**"
- "*.md"
pull_request:
branches:
- master
paths-ignore:
- "bin/**"
- "examples/**"
- "*.md"
jobs:
tests:
name: Ruby ${{ matrix.ruby }}
runs-on: ${{ matrix.os || 'ubuntu-latest' }}
strategy:
fail-fast: false
matrix:
ruby:
- "2.1"
- "2.3"
- "2.4"
- "2.5"
- "2.6"
- "3.0"
- "3.1"
- "3.2"
- ruby-head
allow_failure: [true]
include:
- ruby: "2.2"
allow_failure: true
os: ubuntu-20.04
- ruby: "2.7"
allow_failure: true
coverage: true
env:
COVERAGE: ${{ matrix.coverage }}
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
continue-on-error: ${{ matrix.allow_failure }}
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run tests
run: bundle exec rake ci