Sha256: 242898bbbdc0ebb7af98e7c3f6c611882ec99a99694ed22ba910a28e7dc28654

Contents?: true

Size: 592 Bytes

Versions: 8

Compression:

Stored size: 592 Bytes

Contents

name: Ruby

on:
  push:
    branches:
      - master
  pull_request: {}

jobs:
  test:
    runs-on: "ubuntu-latest"
    strategy:
      matrix:
        container_tag:
        - "2.7"
        - "3.0"
        - "master-nightly-focal"
        task:
        - test
        - test:output
        - build
    container:
      image: rubylang/ruby:${{ matrix.container_tag }}
    steps:
    - uses: actions/checkout@v1
    - name: Run test
      run: |
        ruby -v
        gem install bundler
        bundle install --jobs 4 --retry 3
        bin/setup
        bundle exec rake ${{matrix.task}}

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
steep-0.52.0 .github/workflows/ruby.yml
steep-0.51.0 .github/workflows/ruby.yml
steep-0.50.0 .github/workflows/ruby.yml
steep-0.49.1 .github/workflows/ruby.yml
steep-0.49.0 .github/workflows/ruby.yml
steep-0.48.0 .github/workflows/ruby.yml
steep-0.47.1 .github/workflows/ruby.yml
steep-0.47.0 .github/workflows/ruby.yml