Sha256: 9d49144fc33c5c469af8c15079c4e73b612805e7ba5146032bf313ed5c0a4d7a
Contents?: true
Size: 936 Bytes
Versions: 1
Compression:
Stored size: 936 Bytes
Contents
name: Ruby on: pull_request: branches: - 'master' push: branches: - 'master' jobs: build: runs-on: ubuntu-latest strategy: matrix: ruby: [ '2.5.8', '2.6.6', '2.7.1', 'ruby-head', 'jruby-9.2.11.1', 'jruby-head' ] steps: - uses: actions/checkout@v1 - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} - name: Build and test with Rake run: | gem i test-unit RUBYOPT='--disable-did_you_mean' rake benchmark: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - uses: ruby/setup-ruby@v1 with: ruby-version: 2.7.1 - name: Test performance and accuracy run: | gem install bundler bundle install --jobs 4 --retry 2 RUBYOPT='--disable-did_you_mean' bundle exec rake test:accuracy RUBYOPT='--disable-did_you_mean' bundle exec rake benchmark:memory
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
did_you_mean-1.5.0 | .github/workflows/ruby.yml |