Bump rexml from 3.3.8 to 3.3.9 in the bundler group #56
Workflow file for this run
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: Test Ruby code | |
on: | |
pull_request: | |
paths-ignore: | |
- ".devcontainer/**" | |
- "**/*.md" | |
- "bin/**" | |
workflow_call: | |
jobs: | |
test-ruby: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: Run RSpec test suite | |
run: bundle exec rspec --force-color --format progress --format html --out tmp/rspec.html | |
- name: Upload test artifacts | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: rspec | |
path: | | |
tmp/rspec.html | |
- name: Upload coverage artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: coverage | |
path: coverage/ |