Sha256: 4f2dc620941add3909cc822a2f1c48665970563a62d668bec47c3209fdad45f7

Contents?: true

Size: 591 Bytes

Versions: 10

Compression:

Stored size: 591 Bytes

Contents

name: Tests

on: [push, pull_request]

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

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

    runs-on: ${{matrix.os}}
    steps:
    - uses: actions/checkout@v3
    - 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

10 entries across 10 versions & 2 rubygems

Version Path
extralite-bundle-2.1 .github/workflows/test.yml
extralite-2.1 .github/workflows/test.yml
extralite-bundle-2.0 .github/workflows/test.yml
extralite-2.0 .github/workflows/test.yml
extralite-bundle-1.27 .github/workflows/test.yml
extralite-1.27 .github/workflows/test.yml
extralite-bundle-1.26 .github/workflows/test.yml
extralite-1.26 .github/workflows/test.yml
extralite-bundle-1.25 .github/workflows/test.yml
extralite-1.25 .github/workflows/test.yml