Sha256: 61f052d814e279327a71ebc019190b380c4ff1f4893d50a8a5e79ac124baaee0

Contents?: true

Size: 701 Bytes

Versions: 7

Compression:

Stored size: 701 Bytes

Contents

name: Tests

on: [push, pull_request]

jobs:
  build:
    strategy:
      fail-fast: false
      matrix:
        os: [ubuntu-latest, ubuntu-18.04, macos-10.15]
        ruby: [2.6, 2.7, 3.0]

    name: >-
      ${{matrix.os}}, ${{matrix.ruby}}

    runs-on: ${{matrix.os}}
    steps:
    - uses: actions/checkout@v1
    - uses: actions/setup-ruby@v1
      with:
        ruby-version: ${{matrix.ruby}}
    - name: Install dependencies
      run: |
        gem install bundler
        bundle install
    - name: Show Linux kernel version
      run: uname -r
    - name: Compile C-extension
      run: POLYPHONY_USE_LIBEV=1 bundle exec rake compile
    - name: Run tests
      run:  bundle exec rake test

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
polyphony-0.72 .github/workflows/test.yml
polyphony-0.71 .github/workflows/test.yml
polyphony-0.70 .github/workflows/test.yml
polyphony-0.69 .github/workflows/test.yml
polyphony-0.68 .github/workflows/test.yml
polyphony-0.67 .github/workflows/test.yml
polyphony-0.66 .github/workflows/test.yml