Sha256: 0d2c3e6674e02c601e4930e7e4cce3ee6684ab7c99d581ed23b727a86cc02e43

Contents?: true

Size: 924 Bytes

Versions: 12

Compression:

Stored size: 924 Bytes

Contents

name: Testing on Ubuntu

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.0', '2.7', '2.6', '2.5']
        os: [ubuntu-latest]
        experimental: [false]
        include:
          - ruby-version: head
            os: ubuntu-latest
            experimental: true

    name: Unit testing with Ruby ${{ matrix.ruby-version }} on ${{ matrix.os }}
    steps:
      - uses: actions/checkout@v2
      - name: Set up Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby-version }}
      - name: Install addons
        run: sudo apt-get install libgmp3-dev libcap-ng-dev
      - name: Install dependencies
        run: bundle install
      - name: Run tests
        run: bundle exec rake test

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
fluentd-1.13.0-x64-mingw32 .github/workflows/linux-test.yaml
fluentd-1.13.0-x86-mingw32 .github/workflows/linux-test.yaml
fluentd-1.13.0 .github/workflows/linux-test.yaml
fluentd-1.12.4-x64-mingw32 .github/workflows/linux-test.yaml
fluentd-1.12.4-x86-mingw32 .github/workflows/linux-test.yaml
fluentd-1.12.4 .github/workflows/linux-test.yaml
fluentd-1.12.3-x86-mingw32 .github/workflows/linux-test.yaml
fluentd-1.12.3-x64-mingw32 .github/workflows/linux-test.yaml
fluentd-1.12.3 .github/workflows/linux-test.yaml
fluentd-1.12.2-x86-mingw32 .github/workflows/linux-test.yaml
fluentd-1.12.2-x64-mingw32 .github/workflows/linux-test.yaml
fluentd-1.12.2 .github/workflows/linux-test.yaml