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