Merge pull request #2174 from Shopify/at-class-self-doc #1163
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 |