Sha256: d65d2f42220a207abcfe4195a7997d641e33909eaf6a6a05e2a4c3b0137273d5

Contents?: true

Size: 614 Bytes

Versions: 2

Compression:

Stored size: 614 Bytes

Contents

name: Testing on Ubuntu
on:
  - push
  - pull_request
jobs:
  build:
    runs-on: ${{ matrix.os }}
    strategy:
      fail-fast: false
      matrix:
        ruby:
          - 3.0
          - 3.1
          - 3.2
          - 3.3
        os:
          - ubuntu-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: |
        ruby -v
        bundle install --jobs 4 --retry 3
        bundle exec rake test

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
fluent-plugin-bigquery-3.3.0 .github/workflows/linux.yml
fluent-plugin-bigquery-3.2.0 .github/workflows/linux.yml