Sha256: 808625497e0ea7b794148919bcdf8db4a785fc2e8e9c3869c53313a476a695a2
Contents?: true
Size: 868 Bytes
Versions: 2
Compression:
Stored size: 868 Bytes
Contents
name: Ruby on: [push] jobs: test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Set up Ruby 2.6 uses: actions/setup-ruby@v1 with: ruby-version: 2.6.x - name: Build if: steps.cache.outputs.cache-hit != 'true' run: | gem install bundler bundle config path vendor/bundle bundle install --jobs 4 --retry 3 - name: Lint run: bundle exec rubocop lint: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Set up Ruby 2.6 uses: actions/setup-ruby@v1 with: ruby-version: 2.6.x - name: Build if: steps.cache.outputs.cache-hit != 'true' run: | gem install bundler bundle config path vendor/bundle bundle install --jobs 4 --retry 3 - name: Test run: bundle exec rspec
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
with_last-0.3.0 | .github/workflows/ruby.yml |
with_last-0.2.0 | .github/workflows/ruby.yml |