Sha256: 8e69d9bea5b37bad071eaa735882002d937a2ac48507cff9ce9e5f90a107348e

Contents?: true

Size: 472 Bytes

Versions: 2

Compression:

Stored size: 472 Bytes

Contents

name: build

on: [push]

jobs:
  build:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby: [ '2.5', '2.6', '2.7' ]
    steps:
      - uses: actions/checkout@v2
      - name: Set upt Ruby ${{ matrix.ruby }}
        uses: actions/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
      - name: Build and test with Rake
        run: |
          gem install bundler
          bundle install --jobs 4 --retry 3
          bundle exec rake

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
annoy-rb-0.2.2 .github/workflows/build.yml
annoy-rb-0.2.1 .github/workflows/build.yml