Sha256: e4dbcfe5edbd5953de01a3c3daae22635e730786b92ce69b99777355add1dda8

Contents?: true

Size: 754 Bytes

Versions: 4

Compression:

Stored size: 754 Bytes

Contents

name: Test

on: [push, pull_request]

jobs:
  test:
    strategy:
      fail-fast: false
      matrix:
        ruby: ['2.5', '2.6', '2.7', '3.0']
    runs-on: ubuntu-latest
    steps:
      - name: repository checkout
        uses: actions/checkout@v2
        with:
          submodules: true

      - name: load ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}

      - name: RubyGems, Bundler Update
        run: gem update --system --no-document --conservative

      - name: bundle install
        run: bundle install --path .bundle/gems --without development

      - name: compile
        run: bundle exec rake compile

      - name: test
        run: bundle exec rake spec
        timeout-minutes: 10

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
ob64-0.5.0 .github/workflows/main.yml
ob64-0.4.0 .github/workflows/main.yml
ob64-0.3.0 .github/workflows/main.yml
ob64-0.2.0 .github/workflows/main.yml