Sha256: 66e1a66770d9901a3c713b42675d15fbabab71df5ab0f51002f060a01d96928c

Contents?: true

Size: 670 Bytes

Versions: 10

Compression:

Stored size: 670 Bytes

Contents

name: CI

on:
  push:
    branches: [ main, dev, beta ]
  pull_request:
    branches: [ main, dev, beta ]

jobs:
  test:
    strategy:
      matrix:
        os: [ubuntu-latest, windows-latest, macos-latest]
        ruby: [2.5, 2.6, 2.7, 3.0]
        exclude:
          - os: windows-latest
            ruby: 3.0
    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 rake spec
      env:
        CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
opentok-4.9.0 .github/workflows/ci.yml
opentok-4.8.1 .github/workflows/ci.yml
opentok-4.8.0 .github/workflows/ci.yml
opentok-4.7.1 .github/workflows/ci.yml
opentok-4.7.0 .github/workflows/ci.yml
opentok-4.6.0 .github/workflows/ci.yml
opentok-4.5.1 .github/workflows/ci.yml
opentok-4.5.0 .github/workflows/ci.yml
opentok-4.4.0 .github/workflows/ci.yml
opentok-4.3.0 .github/workflows/ci.yml