chore(main): release 0.2.2 #112
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: Continuous Integration | |
| on: | |
| pull_request: | |
| branches: [main] | |
| workflow_dispatch: | |
| env: | |
| # SimpleCov suggests setting the JRuby --debug flag to ensure that coverage | |
| # results from JRuby are complete. | |
| JRUBY_OPTS: --debug | |
| jobs: | |
| build: | |
| name: Ruby ${{ matrix.ruby }} on ${{ matrix.operating-system }} | |
| if: >- | |
| github.event_name == 'workflow_dispatch' || | |
| (github.event_name == 'pull_request' && !startsWith(github.event.pull_request.head.ref, 'release-please--')) | |
| runs-on: ${{ matrix.operating-system }} | |
| continue-on-error: true | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| ruby: ["3.1", "3.4"] | |
| operating-system: [ubuntu-latest] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Initialize Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: ${{ matrix.ruby }} | |
| bundler-cache: true | |
| - name: Run rake | |
| run: bundle exec rake |