Sha256: 1e5d6232a20fc95001f5f4307c154a87e5a901cdca08a882c9822709982d7615
Contents?: true
Size: 616 Bytes
Versions: 7
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.7, 3.0, 3.1, 3.2] 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
7 entries across 7 versions & 3 rubygems