Sha256: a818877b45656ee15f3bb87e8338fdc7b523bc98c3110327b334568c9dbe1b8d
Contents?: true
Size: 616 Bytes
Versions: 14
Compression:
Stored size: 616 Bytes
Contents
name: Test on: push: branches: - master pull_request: jobs: rubocop: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: ruby/setup-ruby@v1 with: ruby-version: 3 bundler-cache: true - name: Run rubocop run: bundle exec rubocop rspec: runs-on: ubuntu-latest strategy: matrix: ruby: [2.5, 2.6, 2.7, 3.0] steps: - uses: actions/checkout@v2 - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - name: Run rspec run: bundle exec rspec
Version data entries
14 entries across 14 versions & 2 rubygems