Sha256: bcfe97052ea686b73cb2bdca1c3c028bbd574d36bbb442b2bf7fe45ff663776e

Contents?: true

Size: 738 Bytes

Versions: 13

Compression:

Stored size: 738 Bytes

Contents

name: Tests

on: [push, pull_request]

jobs:
  build:
    strategy:
      fail-fast: false
      matrix:
        os: [ubuntu-latest, macos-latest]
        ruby: ['2.7', '3.0', '3.1', 'head']

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

    runs-on: ${{matrix.os}}

    env:
      POLYPHONY_LIBEV: "1"

    steps:
    - name: Setup machine
      uses: actions/checkout@v1
    - name: Setup Ruby
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{matrix.ruby}}
        bundler-cache: true # 'bundle install' and cache
        cache-version: 2
    - name: Kernel version
      run: uname -a
    - name: Compile C-extension
      run: bundle exec rake compile
    - name: Run tests
      run:  bundle exec rake test

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
polyphony-0.94 .github/workflows/test.yml
polyphony-0.93 .github/workflows/test.yml
polyphony-0.92 .github/workflows/test.yml
polyphony-0.91 .github/workflows/test.yml
polyphony-0.90 .github/workflows/test.yml
polyphony-0.89 .github/workflows/test.yml
polyphony-0.87 .github/workflows/test.yml
polyphony-0.86 .github/workflows/test.yml
polyphony-0.85 .github/workflows/test.yml
polyphony-0.84.1 .github/workflows/test.yml
polyphony-0.84 .github/workflows/test.yml
polyphony-0.83 .github/workflows/test.yml
polyphony-0.82 .github/workflows/test.yml