Sha256: ae22d8af6d14fd3ed9065f32f7a3cd98c7b090fd667b4a909a2e04e6de248731

Contents?: true

Size: 835 Bytes

Versions: 9

Compression:

Stored size: 835 Bytes

Contents

name: Run test on container

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

jobs:
  test:
    strategy:
      matrix:
        container_tag:
        - "2.6"
        - "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: Reset bundler
      run: |
        rm Gemfile.lock Gemfile.steep.lock
      if: contains(matrix.container_tag, '2.6')
    - 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

9 entries across 9 versions & 1 rubygems

Version Path
steep-1.3.0 .github/workflows/ruby.yml
steep-1.3.0.pre.2 .github/workflows/ruby.yml
steep-1.3.0.pre.1 .github/workflows/ruby.yml
steep-1.2.1 .github/workflows/ruby.yml
steep-1.2.0 .github/workflows/ruby.yml
steep-1.2.0.pre.1 .github/workflows/ruby.yml
steep-1.1.1 .github/workflows/ruby.yml
steep-1.1.0 .github/workflows/ruby.yml
steep-1.1.0.pre.1 .github/workflows/ruby.yml