Ruby on Windows #965
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: Ruby on Windows | |
on: | |
push: | |
branches: | |
- master | |
pull_request: {} | |
merge_group: {} | |
jobs: | |
compile: | |
runs-on: "windows-latest" | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby: ['3.2', '3.3', ucrt, mswin] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: load ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
- name: bundle install | |
run: | | |
bundle config set without profilers libs | |
bundle install | |
- name: compile | |
run: bundle exec rake compile |