Sha256: 37d042814be53bae003e9ba02df4d726b51af91aeca6f32ff1095ceb3ef6d190

Contents?: true

Size: 595 Bytes

Versions: 4

Compression:

Stored size: 595 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'
          - '3.3'
          - 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 & 3 rubygems

Version Path
ruby-masscan-0.3.0 .github/workflows/ruby.yml
ruby-masscan-0.2.3 .github/workflows/ruby.yml
uri-query_params-0.8.2 .github/workflows/ruby.yml
nokogiri-ext-0.1.1 .github/workflows/ruby.yml