Sha256: 1409e9add330e432c4384b626587fabfdf4f0bed4e350a13f8f29bdee1900088

Contents?: true

Size: 674 Bytes

Versions: 13

Compression:

Stored size: 674 Bytes

Contents

name: Tests

on: [push, pull_request]

jobs:
  build:
    strategy:
      fail-fast: false
      matrix:
        os: [ubuntu-latest]
        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

13 entries across 13 versions & 1 rubygems

Version Path
polyphony-0.65 .github/workflows/test.yml
polyphony-0.64 .github/workflows/test.yml
polyphony-0.63 .github/workflows/test.yml
polyphony-0.62 .github/workflows/test.yml
polyphony-0.61 .github/workflows/test.yml
polyphony-0.60 .github/workflows/test.yml
polyphony-0.59.1 .github/workflows/test.yml
polyphony-0.59 .github/workflows/test.yml
polyphony-0.58 .github/workflows/test.yml
polyphony-0.57.0 .github/workflows/test.yml
polyphony-0.56.0 .github/workflows/test.yml
polyphony-0.55.0 .github/workflows/test.yml
polyphony-0.54.0 .github/workflows/test.yml