Sha256: 355a516e406dd7be6eecf596db3d2270716a9d69fb283715ee8acd23688abb09

Contents?: true

Size: 571 Bytes

Versions: 4

Compression:

Stored size: 571 Bytes

Contents

name: CI

on: [ push, pull_request ]

jobs:
  tests:
    runs-on: ubuntu-latest
    strategy:
      fail-fast: false
      matrix:
        ruby:
          - 3.0
          - 3.1
          - 3.2
          - jruby
          - truffleruby
    name: Ruby ${{ matrix.ruby }}
    steps:
      - uses: actions/checkout@v2
      - name: Set up Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
      - name: Install dependencies
        run: bundle install --jobs 4 --retry 3
      - name: Run tests
        run: bundle exec rake test

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
kramdown-man-1.0.1 .github/workflows/ruby.yml
kramdown-man-1.0.0 .github/workflows/ruby.yml
kramdown-man-0.1.9 .github/workflows/ruby.yml
rubygems-tasks-0.2.6 .github/workflows/ruby.yml