piotrmurach/tty-command

View on GitHub
.github/workflows/ci.yml

Summary

Maintainability
Test Coverage
---
name: CI
on:
  push:
    branches:
      - master
    paths-ignore:
      - "benchmarks/**"
      - "bin/**"
      - "examples/**"
      - "*.md"
  pull_request:
    branches:
      - master
    paths-ignore:
      - "benchmarks/**"
      - "bin/**"
      - "examples/**"
      - "*.md"
jobs:
  tests:
    name: Ruby ${{ matrix.ruby }}
    runs-on: ${{ matrix.os || 'ubuntu-latest' }}
    strategy:
      fail-fast: false
      matrix:
        ruby:
          - "2.0"
          - "2.1"
          - "2.3"
          - "2.4"
          - "2.5"
          - "2.6"
          - "3.0"
          - "3.1"
          - "3.2"
          - "3.3"
          - ruby-head
          - jruby-head
          - truffleruby-head
        allow_failure: [false]
        include:
          - ruby: "2.2"
            os: ubuntu-20.04
            allow_failure: false
          - ruby: "2.7"
            coverage: true
            allow_failure: false
          - ruby: jruby-9.2
            allow_failure: true
          - ruby: jruby-9.3
            allow_failure: true
          - ruby: jruby-9.4
            allow_failure: true
    env:
      COVERAGE: ${{ matrix.coverage }}
      COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
    continue-on-error: ${{ endsWith(matrix.ruby, 'head') || matrix.allow_failure }}
    steps:
      - uses: actions/checkout@v4
      - 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