Change the Screen module to improve YARD documentation #55
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: CI | |
on: | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- "bin/**" | |
- "*.md" | |
pull_request: | |
branches: | |
- master | |
paths-ignore: | |
- "bin/**" | |
- "*.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" | |
- ruby-head | |
- jruby-9.2 | |
- jruby-9.3 | |
- jruby-9.4 | |
- jruby-head | |
- truffleruby-head | |
include: | |
- ruby: "2.2" | |
os: ubuntu-20.04 | |
- ruby: "2.7" | |
coverage: true | |
env: | |
COVERAGE: ${{ matrix.coverage }} | |
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} | |
continue-on-error: ${{ endsWith(matrix.ruby, 'head') }} | |
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 |