Sha256: ca19a6ad9d6962c62e1de041cedc5d6aafdc4febc29fcafe84f3a3d1921b5adf

Contents?: true

Size: 545 Bytes

Versions: 6

Compression:

Stored size: 545 Bytes

Contents

name: Ruby

on:
  push:
    branches: [ master ]
  pull_request:
    branches: [ master ]

jobs:
  test:
    runs-on: ubuntu-latest
    strategy:
      fail-fast: false
      matrix:
        ruby-version: ['2.6.2', '2.7.1', '3.0.1', '3.1.0']

    steps:
    - uses: actions/checkout@v2
    - name: Set up Ruby
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby-version }}
        bundler-cache: true
    - name: Run rake tests
      run: bundle exec rake test
    - name: Run rubocop
      run: bundle exec rubocop

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
schemacop-3.0.22 .github/workflows/ruby.yml
schemacop-3.0.21 .github/workflows/ruby.yml
schemacop-3.0.20 .github/workflows/ruby.yml
schemacop-3.0.19 .github/workflows/ruby.yml
schemacop-3.0.18 .github/workflows/ruby.yml
schemacop-3.0.17 .github/workflows/ruby.yml