Sha256: 7c24db663397ab3be7968fbba55e0bac295c1f70f56383a0181ae79c12e4f238

Contents?: true

Size: 563 Bytes

Versions: 2

Compression:

Stored size: 563 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', '3.2.0', '3.3.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

2 entries across 2 versions & 1 rubygems

Version Path
schemacop-3.0.30 .github/workflows/ruby.yml
schemacop-3.0.29 .github/workflows/ruby.yml