Skip to content

Bump rexml from 3.2.8 to 3.3.6 in the bundler group across 1 director… #103

Bump rexml from 3.2.8 to 3.3.6 in the bundler group across 1 director…

Bump rexml from 3.2.8 to 3.3.6 in the bundler group across 1 director… #103

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby:
- "2.7"
- "3.0"
- "3.1"
- "3.2"
- "3.3"
steps:
- uses: actions/checkout@v1
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Run tests
run: |
bundle install --jobs 4 --retry 3
bundle exec rake
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Ruby
uses: ruby/setup-ruby@v1
- name: Run style checks
run: |
bundle install --jobs 4 --retry 3
bundle exec rubocop