Sha256: f068d43733b19511b5d9df40bf983021d3edc9a964c3283db4d168bb0db144ae

Contents?: true

Size: 831 Bytes

Versions: 11

Compression:

Stored size: 831 Bytes

Contents

name: Testing on macOS

on:
  push:
    branches: [master]
  pull_request:
    branches: [master]

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

11 entries across 11 versions & 1 rubygems

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