Sha256: cc629e012fecb730dbb1090038d0f9be494089ca21b00b1fd492e05f55516082

Contents?: true

Size: 822 Bytes

Versions: 8

Compression:

Stored size: 822 Bytes

Contents

name: CI

on: [push, pull_request]

jobs:
  build:
    name: >-
      ${{ matrix.os }} ${{ matrix.ruby }}

    runs-on: ${{ matrix.os }}
    strategy:
      fail-fast: false
      matrix:
        os: [ ubuntu-22.04, macos-12, windows-2022 ]
        ruby: [ 2.7, "3.0", 3.1, 3.2, head ]
        include:
          - { os: windows-2022, ruby: ucrt  }
          - { os: windows-2022, ruby: mswin }
        exclude:
          - { os: windows-2022, ruby: head }

    steps:
      - name: repo checkout
        uses: actions/checkout@v4

      - uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
          bundler-cache: true

      - name: compile
        timeout-minutes: 5
        run: bundle exec rake compile

      - name: test
        timeout-minutes: 5
        run: bundle exec rake test

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
unf_ext-0.0.9.1-x86-mingw32 .github/workflows/unf_ext.yml
unf_ext-0.0.9.1-x64-mingw32 .github/workflows/unf_ext.yml
unf_ext-0.0.9.1-x64-mingw-ucrt .github/workflows/unf_ext.yml
unf_ext-0.0.9.1 .github/workflows/unf_ext.yml
unf_ext-0.0.9-x86-mingw32 .github/workflows/unf_ext.yml
unf_ext-0.0.9-x64-mingw32 .github/workflows/unf_ext.yml
unf_ext-0.0.9-x64-mingw-ucrt .github/workflows/unf_ext.yml
unf_ext-0.0.9 .github/workflows/unf_ext.yml