Sha256: c152ffdf964de91d7cbf4a68eefad47ceafa9b8c55f9f7d1bbb7f4d358d83bd4
Contents?: true
Size: 584 Bytes
Versions: 6
Compression:
Stored size: 584 Bytes
Contents
name: CI on: [push, pull_request] env: SRB_SKIP_GEM_RBIS: true jobs: build: runs-on: ubuntu-latest strategy: fail-fast: false matrix: ruby: [ 2.7.1 ] name: Test Ruby ${{ matrix.ruby }} steps: - uses: actions/checkout@v2 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - name: rubocop run: bin/rubocop --version && bin/rubocop - name: setup run: bin/setup - name: test run: bundle exec rake test
Version data entries
6 entries across 6 versions & 1 rubygems