Sha256: b4f9f0c521b6e86c4e1db1f4e5406a2a8f42f9112dff1b44945bec69670a2b6e

Contents?: true

Size: 842 Bytes

Versions: 13

Compression:

Stored size: 842 Bytes

Contents

name: Tests (io_uring)

on: [push, pull_request]

jobs:
  build:
    strategy:
      fail-fast: false
      matrix:
        os: [ubuntu-latest]
        ruby: ['3.0', '3.1', '3.2']

    name: >-
      ${{matrix.os}}, ${{matrix.ruby}}

    runs-on: ${{matrix.os}}
    steps:
    - name: Checkout repository and submodules
      uses: actions/checkout@v3
      with:
        submodules: recursive
    - name: Setup Ruby
      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 ruby test/run.rb

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
polyphony-1.0.2 .github/workflows/test_io_uring.yml
polyphony-1.0.1 .github/workflows/test_io_uring.yml
polyphony-1.0 .github/workflows/test_io_uring.yml
polyphony-0.99.6 .github/workflows/test_io_uring.yml
polyphony-0.99.5 .github/workflows/test_io_uring.yml
polyphony-0.99.4 .github/workflows/test_io_uring.yml
polyphony-0.99.3 .github/workflows/test_io_uring.yml
polyphony-0.99.2 .github/workflows/test_io_uring.yml
polyphony-0.99.1 .github/workflows/test_io_uring.yml
polyphony-0.99 .github/workflows/test_io_uring.yml
polyphony-0.98 .github/workflows/test_io_uring.yml
polyphony-0.97 .github/workflows/test_io_uring.yml
polyphony-0.96 .github/workflows/test_io_uring.yml