Sha256: 592a26981c7c4b6533224da6945be6793d3ff118ffb03c1746d31944901575f1

Contents?: true

Size: 443 Bytes

Versions: 2

Compression:

Stored size: 443 Bytes

Contents

name: Ruby

on: [push, pull_request]

jobs:
  build:

    runs-on: ubuntu-latest
    strategy:
      fail-fast: false
      matrix:
        ruby: [3.0, 3.1, 3.2, 3.3]

    steps:
    - uses: actions/checkout@v3
    - name: Set up Ruby ${{ matrix.ruby }}
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby }}
        bundler-cache: true
    - name: Build and test with RSpec
      run: |
        bundle exec rspec

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
avro_turf-1.17.0 .github/workflows/ruby.yml
avro_turf-1.16.0 .github/workflows/ruby.yml