Release Candidate for 5.2.0 (with release infrastructure fixes) #636
Workflow file for this run
This file contains hidden or 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: CI | |
| on: [push, pull_request, workflow_dispatch] | |
| jobs: | |
| rubocop: | |
| runs-on: ubuntu-latest | |
| env: | |
| CI: true | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Ruby 3.4 | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: 3.4 | |
| bundler-cache: true | |
| - name: Run RuboCop | |
| run: bundle exec rubocop --parallel | |
| build: | |
| name: >- | |
| ${{ matrix.os }} ${{ matrix.ruby }} | |
| env: | |
| CI: true | |
| TESTOPTS: -v | |
| runs-on: ${{ matrix.os }}-latest | |
| if: | | |
| !( contains(github.event.pull_request.title, '[ci skip]') | |
| || contains(github.event.pull_request.title, '[skip ci]') | |
| || contains(github.event.head_commit.message, '[ci skip]') | |
| || contains(github.event.head_commit.message, '[skip ci]')) | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ ubuntu, macos, windows ] | |
| ruby: [ 2.7, '3.0', 3.1, 3.2, 3.3, 3.4, head ] | |
| include: | |
| - { os: windows , ruby: ucrt } | |
| exclude: | |
| - { os: windows , ruby: head } | |
| steps: | |
| - name: repo checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: load ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: ${{ matrix.ruby }} | |
| rubygems: latest | |
| bundler-cache: true | |
| - name: compile | |
| run: bundle exec rake compile | |
| - name: test | |
| timeout-minutes: 10 | |
| run: bundle exec rake spec |