Sha256: fc3f8c001b2c1d55dfaeb245e5a9c2970f87a547b1acb3e1de2b02b3e42f4c63
Contents?: true
Size: 592 Bytes
Versions: 4
Compression:
Stored size: 592 Bytes
Contents
name: Ruby on: [push] jobs: test: strategy: fail-fast: false matrix: os: [ ubuntu-latest, macos-latest ] ruby: [ 2.3, 2.4, 2.5, 2.6, 2.7, jruby, truffleruby ] runs-on: ${{ matrix.os }} steps: - name: 'Git checkout' uses: actions/checkout@v2 - name: 'Setup ruby' uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} - name: 'Install bundler and gems' run: | gem install bundler 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 |
---|---|
drain-0.7.0 | .github/workflows/ruby.yml |
birthdays-0.1.3 | .github/workflows/ruby.yml |
shell_helpers-0.7.1 | .github/workflows/ruby.yml |
drain-0.6.0 | .github/workflows/ruby.yml |