Sha256: ddc3963b7ea6001395b2ce29a4b11dd001cd8ee0a2db2671d09656ced096bf55

Contents?: true

Size: 572 Bytes

Versions: 1

Compression:

Stored size: 572 Bytes

Contents

name: Ruby Test

on:
  push:
    branches:
      - main
  pull_request:

jobs:
  build:
    strategy:
      matrix:
        ruby: ['2.7', '3.0', '3.1', '3.2']
        os: [ubuntu-latest, macos-latest]
    runs-on: ${{ matrix.os }}
    steps:
    - uses: actions/checkout@v2
    - name: Set up Ruby ${{ matrix.ruby }}
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby }}
        bundler-cache: true
    - run: bundle exec rake
    - run: bundle exec rubocop
    - run: ./bin/bgem
    - run: ./bin/bgem list
    - run: ./bin/bgem install rake

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
bundled_gems-1.1.0 .github/workflows/ci.yml