Update metadata #34
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
| on: | |
| - push | |
| - pull_request | |
| name: Unit test | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| ruby: [ '3.2', '3.3', '3.4' ] | |
| os: | |
| - windows-latest | |
| - ubuntu-latest | |
| - macos-latest | |
| name: Test on ${{ matrix.os }} with Ruby ${{ matrix.ruby }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: ${{ matrix.ruby }} | |
| - name: Install dependencies | |
| run: bundle | |
| - name: Run tests | |
| run: bundle exec rake test |