Skip to content

Bump rexml from 3.2.6 to 3.2.8 #12

Bump rexml from 3.2.6 to 3.2.8

Bump rexml from 3.2.6 to 3.2.8 #12

Workflow file for this run

# This workflow uses actions that are not certified by GitHub. They are
# provided by a third-party and are governed by separate terms of service,
# privacy policy, and support documentation.
#
# This workflow will install a prebuilt Ruby version, install dependencies, and
# run tests and linters.
name: "Ruby CI"
on:
push:
branches: [ '**' ]
jobs:
ruby-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Ruby setup
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Lint
run: bundle exec rubocop
- name: Test
run: bundle exec rake test