Sha256: 3867973d5bee213037e116cc26c84462691b40acc7af914b7f6a45f9eb3a8936

Contents?: true

Size: 549 Bytes

Versions: 5

Compression:

Stored size: 549 Bytes

Contents

name: CI

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

jobs:
  test:
    strategy:
      matrix:
        os: [ubuntu-latest, macos-latest]
        ruby: [2.5, 2.6, 2.7]
    runs-on: ${{ matrix.os }}
    steps:
    - uses: actions/checkout@v2
    - name: Set up Ruby
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby }}
    - name: Install dependencies
      run: bundle install
    - name: Run tests
      run: bundle exec rspec
    - name: Run rubocop
      run: bundle exec rubocop

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
nexmo-oas-renderer-2.7.1 .github/workflows/ci.yml
nexmo-oas-renderer-2.7.0 .github/workflows/ci.yml
nexmo-oas-renderer-2.6.0 .github/workflows/ci.yml
nexmo-oas-renderer-2.5.0 .github/workflows/ci.yml
nexmo-oas-renderer-2.4.1 .github/workflows/ci.yml