Sha256: 10e54638aa57776a89e82a836b0fc203bd09d4747157b9957158974b8da68630

Contents?: true

Size: 647 Bytes

Versions: 16

Compression:

Stored size: 647 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: Show Linux kernel version
      run: uname -r
    - name: Compile C-extension
      run: bundle exec rake compile
    - name: Run tests
      run:  bundle exec rake test

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
polyphony-0.51.0 .github/workflows/test.yml
polyphony-0.50.1 .github/workflows/test.yml
polyphony-0.50.0 .github/workflows/test.yml
polyphony-0.49.2 .github/workflows/test.yml
polyphony-0.49.1 .github/workflows/test.yml
polyphony-0.49.0 .github/workflows/test.yml
polyphony-0.48.0 .github/workflows/test.yml
polyphony-0.47.5.1 .github/workflows/test.yml
polyphony-0.47.5 .github/workflows/test.yml
polyphony-0.47.4 .github/workflows/test.yml
polyphony-0.47.3 .github/workflows/test.yml
polyphony-0.47.2 .github/workflows/test.yml
polyphony-0.47.1 .github/workflows/test.yml
polyphony-0.47.0 .github/workflows/test.yml
polyphony-0.46.1 .github/workflows/test.yml
polyphony-0.46.0 .github/workflows/test.yml