Sha256: 54428060f68484e6fb0398288126c36715439c70e459bd17e392be8840a0b4fc

Contents?: true

Size: 912 Bytes

Versions: 5

Compression:

Stored size: 912 Bytes

Contents

name: Tests

on: [push, pull_request]

concurrency:
  group: tests-${{ format('{0}-{1}', github.head_ref || github.run_number, github.job) }}
  cancel-in-progress: true

jobs:
  build:
    strategy:
      fail-fast: false
      matrix:
        # macos-latest uses arm64, macos-13 uses x86
        os: [ubuntu-latest]
        ruby: ['3.3', 'head']

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

    if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name

    runs-on: ${{matrix.os}}
    steps:
    - uses: actions/checkout@v4
      with:
        submodules: recursive

    - uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{matrix.ruby}}
        bundler-cache: true # 'bundle install' and cache
    - name: Compile C-extension
      run: bundle exec rake compile
    - name: Run tests
      run:  bundle exec rake test

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
uringmachine-0.4 .github/workflows/test.yml
uringmachine-0.3 .github/workflows/test.yml
uringmachine-0.2 .github/workflows/test.yml
uringmachine-0.1 .github/workflows/test.yml
iou-0.2 .github/workflows/test.yml