Skip to content

chore(deps): Bump rexml from 3.2.5 to 3.3.3 #259

chore(deps): Bump rexml from 3.2.5 to 3.3.3

chore(deps): Bump rexml from 3.2.5 to 3.3.3 #259

Workflow file for this run

name: Build & Test Suite
on: [push]
jobs:
build:
runs-on: ubuntu-latest
container:
image: ruby:3.2.0
services:
postgres:
image: postgres:14.2
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: postgres
ports:
- 5432:5432
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
steps:
- uses: actions/checkout@v1
- name: Build
env:
POSTGRES_HOST: postgres
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_PORT: ${{ job.services.postgres.ports[5432] }}
RAILS_ENV: test
run: |
gem install bundler
bundle install --jobs 4 --retry 3
bundle exec rails db:setup
- name: Run Tests
env:
POSTGRES_HOST: postgres
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_PORT: ${{ job.services.postgres.ports[5432] }}
RAILS_ENV: test
run: bundle exec rake