Sha256: b7867ecbab97a7c590d4f6e68d65cb8aa6372971cc697f3935d6e1f7a0267b65

Contents?: true

Size: 843 Bytes

Versions: 6

Compression:

Stored size: 843 Bytes

Contents

name: Tests (io_uring)

on: [push, pull_request]

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

    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

6 entries across 6 versions & 1 rubygems

Version Path
polyphony-1.6 .github/workflows/test_io_uring.yml
polyphony-1.5 .github/workflows/test_io_uring.yml
polyphony-1.4 .github/workflows/test_io_uring.yml
polyphony-1.3 .github/workflows/test_io_uring.yml
polyphony-1.2.1 .github/workflows/test_io_uring.yml
polyphony-1.2 .github/workflows/test_io_uring.yml