Refactor Unit class for improved code quality and maintainability #383
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: Tests | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| workflow_dispatch: | |
| schedule: | |
| # 00:00 on the 1st of every month | |
| - cron: '0 0 1 * *' | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| ruby: ['3.2', '3.3', '3.4', '4.0', 'jruby-10.0'] | |
| env: | |
| BUNDLE_WITHOUT: optional | |
| steps: | |
| - uses: actions/[email protected] | |
| - uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: ${{ matrix.ruby }} | |
| bundler-cache: true | |
| - name: Tests for Ruby ${{ matrix.ruby }} | |
| run: bundle exec rake | |
| - uses: qltysh/qlty-action/coverage@v2 | |
| with: | |
| token: ${{ secrets.QLTY_COVERAGE_TOKEN }} | |
| files: coverage/.resultset.json | |
| yard: | |
| runs-on: ubuntu-latest | |
| env: | |
| BUNDLE_WITHOUT: optional | |
| steps: | |
| - uses: actions/[email protected] | |
| - uses: ruby/setup-ruby@v1 | |
| with: | |
| bundler-cache: true | |
| - name: Build YARD docs | |
| run: bundle exec yard doc --fail-on-warning |