Sha256: a2e23aa37f8e33ed6c9ef898dd3a2522e867b72110b6109515aa7380a39cd4b7

Contents?: true

Size: 554 Bytes

Versions: 6

Compression:

Stored size: 554 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']

    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.28 .github/workflows/ruby.yml
schemacop-3.0.27 .github/workflows/ruby.yml
schemacop-3.0.26 .github/workflows/ruby.yml
schemacop-3.0.25 .github/workflows/ruby.yml
schemacop-3.0.24 .github/workflows/ruby.yml
schemacop-3.0.23 .github/workflows/ruby.yml