Sha256: 3c928afac227e24022fcf883032bd31379047471051aa4160285249958d8a0d0

Contents?: true

Size: 1.07 KB

Versions: 1

Compression:

Stored size: 1.07 KB

Contents

name: check
on:
  push:
  pull_request:
  schedule:
  - cron: 45 4 * * 3
jobs:
  check:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby:
        - '2.0'
        - '2.1'
        - '2.2'
        - '2.3'
        - '2.4'
        - '2.5'
        - '2.6'
        - '2.7'
        - '3.0'
        - '3.1'
        - jruby-9.1
        - jruby-9.2
        - jruby-9.3
        include:
        - ruby: ruby-head
          allow-failure: allow-failure
      fail-fast: false
    continue-on-error: ${{ matrix.allow-failure && true || false }}
    timeout-minutes: 5
    steps:
    - uses: actions/checkout@v2
    - uses: ruby/setup-ruby@v1
      with:
        ruby-version: "${{ matrix.ruby }}"
        bundler-cache: true
    - run: bundle exec rspec --format documentation
  legacy:
    runs-on: ubuntu-latest
    container: ${{ matrix.container }}
    strategy:
      matrix:
        container:
        - rspec/ci:1.8.7
        - rspec/ci:1.9.3
      fail-fast: false
    steps:
    - uses: actions/checkout@v2
    - run: bundle install
    - run: bundle exec rspec --format documentation

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
in_threads-1.6.0 .github/workflows/check.yml