Skip to content

Bump rexml from 3.2.6 to 3.2.8 #1926

Bump rexml from 3.2.6 to 3.2.8

Bump rexml from 3.2.6 to 3.2.8 #1926

Workflow file for this run

name: test-unit
on: [push]
jobs:
test-unit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build and run tests
run: |
docker-compose -f .circleci/compose-unit.yml up -d
timeout 60 bash -c -- 'while [[ "$(docker-compose -f .circleci/compose-unit.yml exec -T rails-unit curl -s -o /dev/null -w ''%{http_code}'' http://localhost:3000/api/v1/health)" != "200" ]]; do sleep 1; printf "."; done'
docker-compose -f .circleci/compose-unit.yml exec -T rails-unit bundle exec rails db:test:prepare
docker-compose -f .circleci/compose-unit.yml exec -T rails-unit bundle exec rspec --format progress