Sha256: 5ed18fc38225431e3479ccfd5de675bb3f76bd274b7969ede53796847c9efd07

Contents?: true

Size: 747 Bytes

Versions: 2

Compression:

Stored size: 747 Bytes

Contents

name: ci

on:
  push:
    paths-ignore:
      - '**.md'
      - '.rubocop.yml'
  pull_request:
    paths-ignore:
      - '**.md'
      - '.rubocop.yml'

jobs:
  run-tests:
    name: Run tests
    strategy:
      matrix:
        os: [ubuntu-18.04]
        ruby-version: ['2.5', '2.6', '2.7']

    runs-on: ${{ matrix.os }}

    steps:
    - uses: actions/checkout@v2

    - name: Set up Ruby
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby-version }}
        bundler-cache: true

    - name: Bundle install
      run: |
        gem install bundler && \
        bundle install --jobs 4 --retry 3

    - name: Install Redis
      run: sudo apt install redis-server

    - name: Tests
      run: bundle exec rake test

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
fluent-plugin-http-cwm-0.3.0 .github/workflows/ci.yml
fluent-plugin-http-cwm-0.2.0 .github/workflows/ci.yml