Sha256: 57fd21db4aa00fed7b5d88c888df4f16e12b083fe44c3de9764f1afa11068d75

Contents?: true

Size: 593 Bytes

Versions: 9

Compression:

Stored size: 593 Bytes

Contents

name: Testing on Windows
on:
  - push
  - pull_request
jobs:
  build:
    runs-on: ${{ matrix.os }}
    strategy:
      fail-fast: false
      matrix:
        ruby: [ '2.4', '2.5', '2.6' ]
        os:
          - windows-latest
    name: Ruby ${{ matrix.ruby }} unit testing on ${{ matrix.os }}
    steps:
    - uses: actions/checkout@v2
    - uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby }}
    - name: unit testing
      env:
        CI: true
      run: |
        gem install bundler rake
        bundle install --jobs 4 --retry 3
        bundle exec rake test

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
fluent-plugin-elasticsearch-4.1.4 .github/workflows/windows.yml
fluent-plugin-elasticsearch-4.1.3 .github/workflows/windows.yml
fluent-plugin-elasticsearch-4.1.2 .github/workflows/windows.yml
fluent-plugin-elasticsearch-4.1.1 .github/workflows/windows.yml
fluent-plugin-elasticsearch-4.1.0 .github/workflows/windows.yml
fluent-plugin-elasticsearch-4.0.11 .github/workflows/windows.yml
fluent-plugin-elasticsearch-4.0.10 .github/workflows/windows.yml
fluent-plugin-elasticsearch-4.0.9 .github/workflows/windows.yml
fluent-plugin-elasticsearch-4.0.8 .github/workflows/windows.yml