Skip to content

Bump rexml from 3.2.6 to 3.3.3 #8

Bump rexml from 3.2.6 to 3.3.3

Bump rexml from 3.2.6 to 3.3.3 #8

Workflow file for this run

env:
RUBY_VERSION: 3.0
name: Build
on:
push:
branches:
- master
- develop
pull_request:
jobs:
rubocop-test:
name: Rubocop
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ env.RUBY_VERSION }}
bundler-cache: true
- name: Check code
run: bundle exec rubocop
rspec-test:
name: RSpec
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ['3.0', '3.1', '3.2']
steps:
- uses: actions/checkout@v1
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run tests
run: bundle exec rspec