Sha256: 22e493a3235dd7ad87150d46d8fa784937e2f96e5f1e46c69a48b07a53b55df9

Contents?: true

Size: 924 Bytes

Versions: 11

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.2', '3.1', '3.0', '2.7']
        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@v3
      - 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

11 entries across 11 versions & 1 rubygems

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