Sha256: 678b8950f6f878b39383bc21a90f64a29f17f63f5a23297f4842e3052fb896f7
Contents?: true
Size: 603 Bytes
Versions: 3
Compression:
Stored size: 603 Bytes
Contents
name: Testing on Windows on: - push - pull_request jobs: build: runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: ruby: [ '2.4', '2.5', '2.6' ] os: - windows-latest name: Ruby ${{ matrix.ruby }} unit testing on ${{ matrix.os }} steps: - uses: actions/checkout@v2 - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} - name: unit testing env: CI: true run: | gem install bundler rake bundle install --jobs 4 --retry 3 ridk exec bundle exec rake test
Version data entries
3 entries across 3 versions & 1 rubygems