Skip to content

Fix issue with MySQL server #6

Fix issue with MySQL server

Fix issue with MySQL server #6

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:12.1-alpine
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: rootpassword
ports:
- 3306:3306
steps:
- 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: 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: Create MySQL and PostgreSQL databases
run: |
mysql -u root -e "CREATE DATABASE set_as_primary_test;"
mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -u root mysql
createdb set_as_primary_test
- name: Run tests
run: bundle exec rake
- 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 }}