Sha256: 3264000ebed01ddb1ebdc5947152f7c86e8159ad67c9196d4aedf2d29459bd75

Contents?: true

Size: 554 Bytes

Versions: 2

Compression:

Stored size: 554 Bytes

Contents

name: Ruby CI

on:
  push:
  pull_request:

jobs:
  test:

    runs-on: ubuntu-latest

    strategy:
      matrix:
        ruby-version:
          - 3.1
          - "3.0"
          - 2.7
          - jruby-9.3

    steps:
      - uses: actions/checkout@v3
      - name: Set up Ruby ${{ matrix.ruby-version }}
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby-version }}
          bundler-cache: true # runs 'bundle install' and caches installed gems automatically
      - name: Run tests
        run: bundle exec rake

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
memoit-0.4.1 .github/workflows/ci.yml
memoit-0.4.0 .github/workflows/ci.yml