Sha256: 55a0552a10d688dcc6d04513e2e4fa49921ca35b0c9237e6a6be97954977ad7f

Contents?: true

Size: 1000 Bytes

Versions: 7

Compression:

Stored size: 1000 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-20.04, macos-11.0, windows-2019 ]
        ruby: [ 2.6, 2.7, "3.0", 3.1, head ]
        include:
          - { os: windows-2019, ruby: mingw }
        exclude:
          - { os: windows-2019, ruby: head }

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

      - name: load ruby cross-compilation toolkit
        uses: MSP-Greg/setup-ruby-pkgs@v1
        with:
          ruby-version: ${{ matrix.ruby }}
          mingw: _upgrade_

      - name:  bundle install
        shell: pwsh
        run: |
          bundle config set --local path .bundle/vendor
          bundle install --jobs 4 --retry 3

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

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

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
unf_ext-0.0.8.2.beta-x86-mingw32 .github/workflows/unf_ext.yml
unf_ext-0.0.8.2.beta-x64-mingw32 .github/workflows/unf_ext.yml
unf_ext-0.0.8.2.beta-x64-mingw-ucrt .github/workflows/unf_ext.yml
unf_ext-0.0.8.2.beta .github/workflows/unf_ext.yml
unf_ext-0.0.8.1-x86-mingw32 .github/workflows/unf_ext.yml
unf_ext-0.0.8.1-x64-mingw32 .github/workflows/unf_ext.yml
unf_ext-0.0.8.1 .github/workflows/unf_ext.yml