Skip to content

Bump rexml from 3.3.9 to 3.4.2 #30

Bump rexml from 3.3.9 to 3.4.2

Bump rexml from 3.3.9 to 3.4.2 #30

Workflow file for this run

name: "Ruby on Rails CI"
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
jobs:
test:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:14-alpine
ports:
- "5432:5432"
env:
POSTGRES_DB: rails_test
POSTGRES_USER: rails
POSTGRES_PASSWORD: password
env:
RAILS_ENV: test
DATABASE_URL: "postgres://rails:password@localhost:5432/rails_test"
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup environment variables
run: cp .sample.env .env
- name: Install libcurl
run: sudo apt-get install build-essential libcurl4-openssl-dev
- name: Install Ruby and gems
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Set up database schema
run: bin/rails db:schema:load
- name: Run tests
run: bin/rake