Skip to content

Bump rexml from 3.3.0 to 3.3.6 #77

Bump rexml from 3.3.0 to 3.3.6

Bump rexml from 3.3.0 to 3.3.6 #77

Workflow file for this run

name: test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: [2.7, '3.0', 3.1, 3.2, 3.3]
steps:
- uses: actions/checkout@v4
- name: Remove Gemfile.lock
run: rm -f Gemfile.lock
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
ruby-version: ${{ matrix.ruby }}
- name: Run tests
run: bundle exec rake
env:
RUBYOPT: "--enable-frozen-string-literal"