Skip to content

test

test #50

Workflow file for this run

name: "Ruby on Rails CI"
on:
push:
branches: [ "*" ]
pull_request:
branches: [ "*" ]
jobs:
build_and_run_tests:
name: Build and run tests
runs-on: ubuntu-latest
services:
mysql:
image: mysql
ports:
- 3306:3306
env:
MYSQL_ROOT_PASSWORD: mysql
MYSQL_DATABASE: test
MYSQL_USER: test
MYSQL_PASSWORD: test
# Set health checks to wait until mysql has started
options: >-
--health-cmd "mysqladmin ping -h 127.0.0.1 -u root -p$$MYSQL_ROOT_PASSWORD"
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Ruby and gems
uses: ruby/setup-ruby@55283cc23133118229fd3f97f9336ee23a179fcf # v1.146.0
with:
bundler-cache: true
- name: remove mysql client
run:
sudo apt remove -yq *mysql*
- name: Install mariadb client
run:
sudo apt install -yq mariadb-client libmariadb-dev-compat libmariadb-dev
- name: bundle install
env:
RAILS_ENV: test
run:
bundle install
- name: Run tests with mysql
env:
RAILS_ENV: test
DATABASE_URL: mysql2://test:[email protected]:3306/test
run: |
bundle exec rake db:reset
bundle exec rake test
- name: Run tests with sqlite3
env:
RAILS_ENV: test
DATABASE_URL: sqlite3:db/test.sqlite3
run: |
bundle exec rake db:reset
bundle exec rake test