Sha256: 125c9bbcac11e850da740d08549cd1e761b3752d2623256c4e65a409176a8bc1
Contents?: true
Size: 580 Bytes
Versions: 4
Compression:
Stored size: 580 Bytes
Contents
name: Ruby on: [push] jobs: build: runs-on: ubuntu-latest strategy: matrix: ruby: ['3.0.x', '2.7.x', '2.6.x', '2.5.x'] steps: - uses: actions/checkout@v1 - name: Set up Ruby ${{ matrix.ruby }} uses: actions/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} - name: Build and test with Rake run: | gem install bundler undercover --no-doc bundle install --jobs 4 --retry 3 bundle exec rake git fetch origin master:master undercover --compare master
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
undercover-0.4.4 | .github/workflows/ruby.yml |
undercover-0.4.3 | .github/workflows/ruby.yml |
undercover-0.4.1 | .github/workflows/ruby.yml |
undercover-0.4.0 | .github/workflows/ruby.yml |