Sha256: 37a8b3ddeb133028d342b8002b3911f143679e166427b40d657de58c92b9a19e

Contents?: true

Size: 705 Bytes

Versions: 4

Compression:

Stored size: 705 Bytes

Contents

name: Run test on container

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

jobs:
  test:
    strategy:
      matrix:
        container_tag:
        - "2.7"
        - "3.0"
        - "3.1"
        - "3.2"
        - "master-nightly-focal"
        task:
        - test
        - test:output
        - build
    runs-on: ubuntu-latest
    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

4 entries across 4 versions & 1 rubygems

Version Path
steep-1.3.2 .github/workflows/ruby.yml
steep-1.3.1 .github/workflows/ruby.yml
steep-1.4.0.dev.2 .github/workflows/ruby.yml
steep-1.4.0.dev.1 .github/workflows/ruby.yml