Bump the rails_70 group in /gemfiles/rails_70 with 1 update (#586) #713
This file contains 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.0" | |
- 3.1 | |
- 3.2 | |
- 3.3 | |
deps: | |
- rails_61 | |
- rails_70 | |
- rails_71 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Configure bundler (default) | |
run: | | |
echo "BUNDLE_GEMFILE=Gemfile" >> "$GITHUB_ENV" | |
if: matrix.deps == 'rails_71' | |
- name: Configure bundler (alternative) | |
run: | | |
echo "BUNDLE_GEMFILE=gemfiles/${{ matrix.deps }}/Gemfile" >> "$GITHUB_ENV" | |
if: matrix.deps != 'rails_71' | |
- 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.deps }}.xml | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: coverage-ruby-${{ matrix.ruby }}-${{ matrix.deps }} | |
path: coverage | |
if-no-files-found: error | |
upload_coverage: | |
name: Upload Coverage | |
runs-on: ubuntu-latest | |
needs: | |
- test | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/download-artifact@v4 | |
with: | |
pattern: coverage-ruby-* | |
path: coverage | |
merge-multiple: true | |
- uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
directory: coverage | |
fail_ci_if_error: true |