Bump rexml from 3.2.6 to 3.2.8 #185
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and test | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ruby: [ '2.6', '2.7', '2' ] | |
name: Test gem in ruby version ${{ matrix.ruby }} | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Set up Ruby ${{ matrix.ruby }} | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
- name: Build with dependencies | |
run: | | |
gem install bundler -v 2.1.4 | |
bundle install | |
- name: Test with rspec | |
run: | | |
bundle exec rspec | |
- name: Lint with rubocop | |
run: | | |
bundle exec rubocop |