Skip to content

Bump rexml from 3.2.5 to 3.3.3 #24

Bump rexml from 3.2.5 to 3.3.3

Bump rexml from 3.2.5 to 3.3.3 #24

Workflow file for this run

name: Main
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
ci:
name: CI
strategy:
fail-fast: false
matrix:
ruby: [jruby, 2.5, 2.6, 2.7]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- uses: actions/cache@v1
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-gems-
- run: bundle install --jobs 4 --retry 3
- run: bundle exec rspec
- run: bundle exec rubocop
if: matrix.ruby == 2.7