Skip to content

🚨 [security] Update rexml 3.2.5 → 3.3.4 (minor) #275

🚨 [security] Update rexml 3.2.5 → 3.3.4 (minor)

🚨 [security] Update rexml 3.2.5 → 3.3.4 (minor) #275

Workflow file for this run

name: Ruby
on: [push,pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ['2.6.9', '2.7.5', '3.1.1']
name: Ruby ${{ matrix.ruby }}
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Linter
run: bundle exec rake standard
- name: Test
run: bundle exec rake spec
- name: Type Check
run: bundle exec rake steep