Sha256: 2aa6c75b9d38ca1056548c9e186653f4bf923b4fc958cc121c3d1b54f263d7f5

Contents?: true

Size: 674 Bytes

Versions: 3

Compression:

Stored size: 674 Bytes

Contents

name: Ruby

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

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

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
steep-1.0.0 .github/workflows/ruby.yml
steep-0.52.2 .github/workflows/ruby.yml
steep-0.52.1 .github/workflows/ruby.yml