Sha256: a0d6b62a6fd5992e92974137ac9f84a11b651a9b751bea8d1c4e1b753bddb325

Contents?: true

Size: 689 Bytes

Versions: 2

Compression:

Stored size: 689 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"
        - "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

2 entries across 2 versions & 1 rubygems

Version Path
steep-1.0.2 .github/workflows/ruby.yml
steep-1.0.1 .github/workflows/ruby.yml