Sha256: ee8eb741b063dd60209411802023dbd6be06140d3840afe66ca159c82305b246

Contents?: true

Size: 845 Bytes

Versions: 4

Compression:

Stored size: 845 Bytes

Contents

name: Testing on macOS

on:
  push:
    branches: [master, v1.16]
  pull_request:
    branches: [master, v1.16]

jobs:
  test:
    runs-on: ${{ matrix.os }}
    continue-on-error: ${{ matrix.experimental }}
    strategy:
      fail-fast: false
      matrix:
        ruby-version: ['3.2', '3.1', '3.0', '2.7']
        os: [macos-latest]
        experimental: [true]
        include:
          - ruby-version: head
            os: macos-latest
            experimental: true

    name: Unit testing with Ruby ${{ matrix.ruby-version }} on ${{ matrix.os }}
    steps:
      - uses: actions/checkout@v3
      - name: Set up Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby-version }}
      - name: Install dependencies
        run: bundle install
      - name: Run tests
        run: bundle exec rake test

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
fluentd-1.16.3-x86-mingw32 .github/workflows/macos-test.yaml
fluentd-1.16.3-x64-mingw32 .github/workflows/macos-test.yaml
fluentd-1.16.3-x64-mingw-ucrt .github/workflows/macos-test.yaml
fluentd-1.16.3 .github/workflows/macos-test.yaml