Sha256: f15ca0bd42db38c2bfe96665fe18e1e19c8ebc9196d6dc02fdd9634d76761a9c

Contents?: true

Size: 654 Bytes

Versions: 1

Compression:

Stored size: 654 Bytes

Contents

name: Testing with Ruby head
on:
  schedule:
    - cron: '32 14 * * 0'
  workflow_dispatch:
jobs:
  build:
    runs-on: ${{ matrix.os }}
    strategy:
      fail-fast: false
      matrix:
        os: ['ubuntu-latest']
        ruby: [ 'head' ]

    name: Ruby ${{ matrix.ruby }} on ${{ matrix.os }}
    steps:
    - uses: actions/checkout@v4
    - name: Install dependencies
      run: sudo apt-get install libsnappy-dev libzstd-dev
    - uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby }}
    - name: unit testing
      env:
        CI: true
      run: |
        bundle install --jobs 4 --retry 3
        bundle exec rake test

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
fluent-plugin-webhdfs-1.6.0 .github/workflows/test-ruby-head.yml