Skip to content

Bump rexml from 3.3.6 to 3.3.9 #266

Bump rexml from 3.3.6 to 3.3.9

Bump rexml from 3.3.6 to 3.3.9 #266

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 on Rails CI"
on:
push:
branches: [ '**' ]
jobs:
test:
runs-on: ubuntu-latest
env:
RAILS_ENV: test
steps:
- name: Checkout code
uses: actions/checkout@v3
- name:
run: cat config/database.yml
- name: Install Ruby and gems
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Binstubs
run: bundle install --binstubs
- name: Set up database schema
run: bin/rake db:prepare db:seed
- name: Run tests
run: bin/rspec spec
- name: Build assets
run: bin/rails assets:precompile
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Ruby and gems
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Binstubs
run: bundle install --binstubs
- name: Lint Ruby files
run: bin/rubocop --parallel
- name: Audit
run: bin/bundler-audit --update