Sha256: d10c5aeaf7b8c1916c870c57cb087215ca0ea7c187d4f5cfefd2a6910d8d95bc

Contents?: true

Size: 575 Bytes

Versions: 6

Compression:

Stored size: 575 Bytes

Contents

name: Tests

on: [push]

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

    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: Compile C-extension
      run: bundle exec rake compile
    - name: Run tests
      run:  bundle exec rake test

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
polyphony-0.43.4 .github/workflows/test.yml
polyphony-0.43.3 .github/workflows/test.yml
polyphony-0.43.1 .github/workflows/test.yml
polyphony-0.43 .github/workflows/test.yml
polyphony-0.42 .github/workflows/test.yml
polyphony-0.41 .github/workflows/test.yml