Sha256: a35f70c58ba4d159c67afd184f48fde393ac734a31172f97596b3a78e56cef15
Contents?: true
Size: 1.36 KB
Versions: 3
Compression:
Stored size: 1.36 KB
Contents
name: Ruby on: [push, pull_request] jobs: build-ruby-30: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - name: Set up Ruby 3.0 uses: actions/setup-ruby@v1 with: ruby-version: 3.0.x - name: Build and test with Rake run: | gem install bundler bundle install --jobs 4 --retry 3 bundle exec rake build-ruby-26: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - name: Set up Ruby 2.6 uses: actions/setup-ruby@v1 with: ruby-version: 2.6.x - name: Build and test with Rake run: | gem install bundler bundle install --jobs 4 --retry 3 bundle exec rake build-ruby-25: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - name: Set up Ruby 2.5 uses: actions/setup-ruby@v1 with: ruby-version: 2.5.x - name: Build and test with Rake run: | gem install bundler bundle install --jobs 4 --retry 3 bundle exec rake build-ruby-24: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - name: Set up Ruby 2.5 uses: actions/setup-ruby@v1 with: ruby-version: 2.5.x - name: Build and test with Rake run: | gem install bundler bundle install --jobs 4 --retry 3 bundle exec rake
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
rubocopital-1.0.2 | .github/workflows/ruby.yml |
rubocopital-1.0.1 | .github/workflows/ruby.yml |
rubocopital-1.0.0 | .github/workflows/ruby.yml |