Skip to content

Bump rexml from 3.2.6 to 3.2.8 in /gemfiles/rails_61 (#593) #728

Bump rexml from 3.2.6 to 3.2.8 in /gemfiles/rails_61 (#593)

Bump rexml from 3.2.6 to 3.2.8 in /gemfiles/rails_61 (#593) #728

Workflow file for this run

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