Skip to content

Fix issue with MySQL server #14

Fix issue with MySQL server

Fix issue with MySQL server #14

Workflow file for this run

name: Continuous Integration
on: [push]
jobs:
build:
runs-on: ubuntu-latest
env:
CC_TEST_REPORTER_ID: 353b5634de390dad574939f59c2ef3798b81f06df548f7bdd11cd8225be484f3
services:
postgres:
image: postgres
env:
POSTGRES_HOST_AUTH_METHOD: trust
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
mysql:
image: mysql:5.7
env:
MYSQL_ROOT_PASSWORD: password
ports:
- 32574:3306
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
steps:
- name: Show postgres version
run: psql -h localhost -U postgres -d postgres -c 'SHOW server_version'
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.6.0
bundler-cache: true
- name: Install Bundler
run: gem install bundler
- name: Install dependencies
run: bundle install
- name: Create MySQL and PostgreSQL databases
run: |
sudo apt-get install -y mysql-client
mysql --host 127.0.0.1 --port 32574 -uroot -ppassword -e "CREATE DATABASE set_as_primary_test;"
psql --host 127.0.0.1 --port 5432 --username postgres --password password -c "CREATE DATABASE set_as_primary_test;"
- name: Run tests
run: bundle exec rake
- name: Set up Code Climate Test Reporter
run: |
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
chmod +x ./cc-test-reporter
./cc-test-reporter before-build
- name: Upload test coverage results to Code Climate
if: always() && ${{ github.ref == 'refs/heads/master' }} # Adjust the branch name if needed
run: ./cc-test-reporter after-build --debug --exit-code ${{ job.status }}