Sha256: b9a7a1712b9bcae3968be8b116bfbdbacdcedacecb5e4f4e79ce9c932d58bb0c

Contents?: true

Size: 589 Bytes

Versions: 12

Compression:

Stored size: 589 Bytes

Contents

name: Tests

on: [push, pull_request]

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

12 entries across 12 versions & 1 rubygems

Version Path
polyphony-0.45.5 .github/workflows/test.yml
polyphony-0.45.4 .github/workflows/test.yml
polyphony-0.45.2 .github/workflows/test.yml
polyphony-0.45.1 .github/workflows/test.yml
polyphony-0.45.0 .github/workflows/test.yml
polyphony-0.44.0 .github/workflows/test.yml
polyphony-0.43.11 .github/workflows/test.yml
polyphony-0.43.10 .github/workflows/test.yml
polyphony-0.43.9 .github/workflows/test.yml
polyphony-0.43.8 .github/workflows/test.yml
polyphony-0.43.6 .github/workflows/test.yml
polyphony-0.43.5 .github/workflows/test.yml