Skip to content

Bump rails from 7.0.8 to 7.0.8.1 #241

Bump rails from 7.0.8 to 7.0.8.1

Bump rails from 7.0.8 to 7.0.8.1 #241

Workflow file for this run

name: Tests
on:
push:
jobs:
test:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Install and start services
run: |
docker-compose up -d
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.0.3'
bundler-cache: true
- name: Wait for MySQL to boot
run: |
timeout 30 bash -c 'until mysqladmin ping -h 127.0.0.1 -u root -pshipit; do echo waiting for MySQL; sleep 1; done'
- name: Run tests
run: |
cp config/database.ci.yml config/database.yml
bin/rails db:setup test