Skip to content

Bump rexml from 3.3.7 to 3.3.9 in /spec/support/rails_app #1408

Bump rexml from 3.3.7 to 3.3.9 in /spec/support/rails_app

Bump rexml from 3.3.7 to 3.3.9 in /spec/support/rails_app #1408

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby:
- '3.0'
- '3.1'
- '3.2'
- '3.3'
name: Ruby ${{ matrix.ruby }}
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install libsqlite3-dev
gem install bundler
bundle install --jobs 4 --retry 3
- name: Run RuboCop
run: bundle exec rubocop
- name: Run RSpec specs
run: bundle exec rspec