Merge pull request #122 from Watson1978/0.9.2 #86
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: Test | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| branches: [master] | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| continue-on-error: ${{ matrix.experimental }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| ruby: [ '3.4', '3.3', '3.2', '3.1', '3.0', '2.7' ] | |
| os: | |
| - windows-latest | |
| experimental: [false] | |
| include: | |
| - ruby: 'head' | |
| os: windows-latest | |
| experimental: true | |
| name: Ruby ${{ matrix.ruby }} on ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: ${{ matrix.ruby }} | |
| - name: Install | |
| run: | | |
| ruby --version | |
| gem --version | |
| gem install bundler rake | |
| ridk exec bundle install --jobs 4 --retry 3 | |
| - name: Unit Test | |
| run: | | |
| bundle exec rake test |