Sha256: 84a414ee0b59c7ca025598c3f3f5e7c3ce0dd96d7565ffe0b16cf1339b8b417a

Contents?: true

Size: 579 Bytes

Versions: 4

Compression:

Stored size: 579 Bytes

Contents

name: CI

on: [ push, pull_request ]

jobs:
  tests:
    runs-on: ubuntu-latest
    strategy:
      fail-fast: false
      matrix:
        ruby:
          - 2.4
          - 2.5
          - 2.6
          - 2.7
          - 3.0
          - jruby
    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
chars-0.3.0 .github/workflows/ruby.yml
chars-0.2.4 .github/workflows/ruby.yml
ronin-support-0.5.2 .github/workflows/ruby.yml
chars-0.2.3 .github/workflows/ruby.yml