Sha256: cfcaffdd981d6325702ef205d5ef40f5311b9815a589e87fffc7c68bc588e338

Contents?: true

Size: 1.37 KB

Versions: 3

Compression:

Stored size: 1.37 KB

Contents

name: ci

on:
  pull_request:
    branches: '*'
  push:
    branches:
      - master
      - main
      - 'release-*'

jobs:
  mri:
    strategy:
      fail-fast: false
      matrix:
        os: [ubuntu, macos, windows]
        ruby: ['2.4', '2.5', '2.6', '2.7', '3.0', '3.1']
    runs-on: ${{ matrix.os }}-latest
    steps:
      - uses: actions/checkout@v2
      - uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
          bundler-cache: true # 'bundle install' and cache
      - run: bundle exec rake

  jruby:
    strategy:
      fail-fast: false
      matrix:
        os: [ubuntu]
        ruby: ['jruby-9.2.19.0', 'jruby-9.3.3.0']
    runs-on: ${{ matrix.os }}-latest
    steps:
      - uses: actions/checkout@v2
      - uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
          bundler-cache: true # 'bundle install' and cache
      - run: bundle exec rake

  head-versions:
    continue-on-error: true
    strategy:
      fail-fast: false
      matrix:
        os: [ubuntu]
        ruby: ['ruby-head', 'jruby-head', 'truffleruby']
    runs-on: ${{ matrix.os }}-latest
    steps:
      - uses: actions/checkout@v2
      - uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
          bundler-cache: true # 'bundle install' and cache
      - run: bundle exec rake || echo "failed, but ignore it"

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
msgpack-1.5.1 .github/workflows/ci.yaml
msgpack-1.5.0 .github/workflows/ci.yaml
msgpack-1.4.5 .github/workflows/ci.yaml