Sha256: a365c80f3d50104a8cc359790784453b5e1be025f0d40d9e82c1ced354cb0483

Contents?: true

Size: 611 Bytes

Versions: 2

Compression:

Stored size: 611 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 }}
          bundler-cache: true
      - name: Install dependencies
        run: bundle install --jobs 4 --retry 3
      - name: Run tests
        run: bundle exec rake test

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ronin-support-1.0.0 .github/workflows/ruby.yml
ronin-support-1.0.0.beta3 .github/workflows/ruby.yml