Support autoloading for custom Arbre components #977
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: ci | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| ruby: | |
| - "3.1" | |
| - "3.2" | |
| - "3.3" | |
| - "3.4" | |
| rails: | |
| - rails_70 | |
| - rails_71 | |
| - rails_72 | |
| - rails_80 | |
| - rails_81 | |
| exclude: | |
| - ruby: "3.1" | |
| rails: rails_80 | |
| - ruby: "3.1" | |
| rails: rails_81 | |
| - ruby: "3.4" | |
| rails: rails_70 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Configure bundler (default) | |
| run: | | |
| echo "BUNDLE_GEMFILE=Gemfile" >> "$GITHUB_ENV" | |
| if: matrix.rails == 'rails_81' | |
| - name: Configure bundler (alternative) | |
| run: | | |
| echo "BUNDLE_GEMFILE=gemfiles/${{ matrix.rails }}/Gemfile" >> "$GITHUB_ENV" | |
| if: matrix.rails != 'rails_81' | |
| - uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: ${{ matrix.ruby }} | |
| bundler-cache: true | |
| - name: Run tests | |
| env: | |
| COVERAGE: true | |
| run: | | |
| bundle exec rspec | |
| mv coverage/coverage.xml coverage/coverage-ruby-${{ matrix.ruby }}-${{ matrix.rails }}.xml | |
| - uses: actions/upload-artifact@v6 | |
| with: | |
| name: coverage-ruby-${{ matrix.ruby }}-${{ matrix.rails }} | |
| path: coverage | |
| if-no-files-found: error | |
| upload_coverage: | |
| name: Upload Coverage | |
| runs-on: ubuntu-latest | |
| needs: | |
| - test | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/download-artifact@v7 | |
| with: | |
| pattern: coverage-ruby-* | |
| path: coverage | |
| merge-multiple: true | |
| - uses: codecov/codecov-action@v5 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| directory: coverage | |
| fail_ci_if_error: true |