docs: improve gemspec and README marketing copy #191
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: | |
| branches: [main] | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| name: Ruby ${{ matrix.ruby_version }} / ActionView ${{ matrix.actionview_version }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| ruby_version: [ruby-head, '4.0', '3.4', '3.3', '3.2'] | |
| actionview_version: ['edge', '8.1', '8.0', '7.2'] | |
| env: | |
| ACTIONVIEW_VERSION: ${{ matrix.actionview_version }} | |
| COVERAGE: true | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - run: rm -f Gemfile.lock | |
| - uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: ${{ matrix.ruby_version }} | |
| bundler-cache: true | |
| continue-on-error: ${{ matrix.ruby_version == 'ruby-head' || matrix.actionview_version == 'edge' }} | |
| - run: bundle exec rake | |
| continue-on-error: ${{ matrix.ruby_version == 'ruby-head' || matrix.actionview_version == 'edge' }} | |
| - name: Upload coverage reports to Codecov | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| slug: svyatov/clsx-rails | |
| # Only upload coverage for the latest stable Ruby and ActionView versions | |
| if: ${{ matrix.ruby_version == '4.0' && matrix.actionview_version == '8.1' }} |