Skip to content

Bump rexml from 3.3.9 to 3.4.2 (#37) #89

Bump rexml from 3.3.9 to 3.4.2 (#37)

Bump rexml from 3.3.9 to 3.4.2 (#37) #89

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Set up Ruby 2.7
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.0.2
- name: Cache Gems
uses: actions/cache@v4.3.0
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: ${{ runner.os }}-gems-
- name: Build
run: |
gem install bundler
bundle install
- name: Static analysis
run: bundle exec rubocop
- name: Run tests
run: bundle exec rspec --format documentation