Sha256: 293928c8f42fb88c3be5e979c68f93bca12ea8777ef548dc5e2068230aa98f6b

Contents?: true

Size: 683 Bytes

Versions: 8

Compression:

Stored size: 683 Bytes

Contents

name: CI-TEST-CASES

on:

  pull_request:
    branches:
      - master

jobs:
  test_cases:
    strategy:
      fail-fast: false
      matrix:
        os: [ubuntu]
        ruby: [2.5, 2.6]

    runs-on: ${{ matrix.os }}-latest
    continue-on-error: ${{ endsWith(matrix.ruby, 'head') || matrix.ruby == 'debug' }}
    steps:
    - uses: actions/checkout@v2
      with:
        fetch-depth: 1
    - uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby }}

    - name: Install Dependencies
      run: |
        gem install bundler -v 1.17.3
        bundle install --jobs=4 --retry=3 --path vendor/bundle
    - name: Run tests
      run: |
        bundle exec rake

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
fluent-plugin-filter-kv-parser-0.0.9 .github/workflows/ci-test-cases.yml
fluent-plugin-filter-kv-parser-0.0.7 .github/workflows/ci-test-cases.yml
fluent-plugin-filter-kv-parser-0.0.6 .github/workflows/ci-test-cases.yml
fluent-plugin-filter-kv-parser-0.0.5 .github/workflows/ci-test-cases.yml
fluent-plugin-filter-kv-parser-0.0.4 .github/workflows/ci-test-cases.yml
fluent-plugin-filter-kv-parser-0.0.3 .github/workflows/ci-test-cases.yml
fluent-plugin-filter-kv-parser-0.0.2 .github/workflows/ci-test-cases.yml
fluent-plugin-filter-kv-parser-0.0.1 .github/workflows/ci-test-cases.yml