Sha256: 64c8508949ff481d5d0d0a66b870301201a647e8a092a90e2dcc6a8a3953eee5

Contents?: true

Size: 583 Bytes

Versions: 1

Compression:

Stored size: 583 Bytes

Contents

name: Ruby Specs

on: [push, pull_request]

jobs:
  build:

    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby: [ '2.6.x', '2.7.x', '3.0.x' ]

    steps:
    - uses: actions/checkout@v2
    - name: Set up Ruby ${{ matrix.ruby }}
      uses: actions/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby }}
    - name: Test with Rake
      run: |
        sudo apt-get install libxml2-utils
        gem install bundler
        bundle install --jobs 4 --retry 3
        bundle exec rake
    - name: Check with Rubocop
      run: |
        bundle exec rubocop

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
cxml-ruby-0.8.2 .github/workflows/ruby.yml