Sha256: 1ac18d6ac1c92fe605ff81390a4886fd7f9fee9e319a4d79e0ba058e04773360

Contents?: true

Size: 752 Bytes

Versions: 18

Compression:

Stored size: 752 Bytes

Contents

name: Run test on Windows

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

jobs:
  test:
    strategy:
      matrix:
        ruby_version:
        - "2.7"
        - "3.0"
        - "3.1"
        - "3.2"
        task:
        - test
        # - test:output  Ignored because the order of diagnostics changes somehow
        - build
    runs-on: windows-latest
    steps:
    - uses: actions/checkout@v3
    - uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby_version }}
    - 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

18 entries across 18 versions & 1 rubygems

Version Path
steep-1.5.3 .github/workflows/ruby-windows.yml
steep-1.5.2 .github/workflows/ruby-windows.yml
steep-1.5.1 .github/workflows/ruby-windows.yml
steep-1.5.0 .github/workflows/ruby-windows.yml
steep-1.5.0.pre.6 .github/workflows/ruby-windows.yml
steep-1.5.0.pre.5 .github/workflows/ruby-windows.yml
steep-1.5.0.pre.4 .github/workflows/ruby-windows.yml
steep-1.5.0.pre.3 .github/workflows/ruby-windows.yml
steep-1.5.0.pre.2 .github/workflows/ruby-windows.yml
steep-1.5.0.pre.1 .github/workflows/ruby-windows.yml
steep-1.4.0 .github/workflows/ruby-windows.yml
steep-1.4.0.dev.5 .github/workflows/ruby-windows.yml
steep-1.4.0.dev.4 .github/workflows/ruby-windows.yml
steep-1.4.0.dev.3 .github/workflows/ruby-windows.yml
steep-1.3.2 .github/workflows/ruby-windows.yml
steep-1.3.1 .github/workflows/ruby-windows.yml
steep-1.4.0.dev.2 .github/workflows/ruby-windows.yml
steep-1.4.0.dev.1 .github/workflows/ruby-windows.yml