doc: Add diagnostics for Ruby page #1361
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run test on Windows | |
on: | |
push: | |
branches: | |
- master | |
pull_request: {} | |
jobs: | |
windows: | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby_version: | |
- "3.1" | |
- "3.2" | |
- "3.3" | |
task: | |
- test | |
# - test:output Ignored because the order of diagnostics changes somehow | |
- build | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- 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}} |