Sha256: be1a69d00b9824eff824f564089ab906d40b40680b0da6dfdaee0e9d84eb8313

Contents?: true

Size: 838 Bytes

Versions: 1

Compression:

Stored size: 838 Bytes

Contents

name: ci

on:
  push:
    branches: [main]
    paths-ignore: ['**.md', '.rubocop.yml']
  pull_request:
    branches: [main]
    types: [opened, synchronize, reopened]
    paths-ignore: ['**.md', '.rubocop.yml']

jobs:
  build-and-test:
    strategy:
      matrix:
        os: [ubuntu-latest, macos-latest, windows-latest]
        ruby-version: ['2.6', '2.7']

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

    steps:
    - name: Checkout [${{ github.repository }}]
      uses: actions/checkout@v4

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

    - name: Install protoc
      uses: arduino/setup-protoc@master
      with:
        repo-token: ${{ secrets.GITHUB_TOKEN }}

    - name: Run tests
      run: bundle exec rake test

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
fluent-plugin-protobuf-http-0.3.1 .github/workflows/ci.yml