Sha256: 31cc4494b673427054b4bce84ec70fcb64d6ff0f28f9cb99ad902d18af9c6bb6

Contents?: true

Size: 720 Bytes

Versions: 16

Compression:

Stored size: 720 Bytes

Contents

name: Tests with io_uring

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: ruby/setup-ruby@v1
      with:
        ruby-version: ${{matrix.ruby}}
        bundler-cache: true # 'bundle install' and cache
    - name: Install dependencies
      run: |
        gem install bundler
        bundle install
    - name: Show Linux 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

16 entries across 16 versions & 1 rubygems

Version Path
polyphony-0.87 .github/workflows/test_io_uring.yml
polyphony-0.86 .github/workflows/test_io_uring.yml
polyphony-0.85 .github/workflows/test_io_uring.yml
polyphony-0.84.1 .github/workflows/test_io_uring.yml
polyphony-0.84 .github/workflows/test_io_uring.yml
polyphony-0.83 .github/workflows/test_io_uring.yml
polyphony-0.82 .github/workflows/test_io_uring.yml
polyphony-0.81.1 .github/workflows/test_io_uring.yml
polyphony-0.81 .github/workflows/test_io_uring.yml
polyphony-0.80 .github/workflows/test_io_uring.yml
polyphony-0.79 .github/workflows/test_io_uring.yml
polyphony-0.78 .github/workflows/test_io_uring.yml
polyphony-0.77 .github/workflows/test_io_uring.yml
polyphony-0.76 .github/workflows/test_io_uring.yml
polyphony-0.75 .github/workflows/test_io_uring.yml
polyphony-0.74 .github/workflows/test_io_uring.yml