test: include variants in tests #80
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Specs Rails 6.1 MySQL | |
on: | |
pull_request: | |
branches: [main] | |
push: | |
branches: [main] | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ruby: ['2.7', '3.0'] | |
gemfile: ['rails_6_1_mysql'] | |
env: | |
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile | |
DB_TEST: mysql | |
MYSQL_DB_HOST: 127.0.0.1 | |
MYSQL_DB_USERNAME: root | |
MYSQL_DB_PASSWORD: root | |
RAILS: '6.1' | |
services: | |
mysql: | |
image: mysql | |
env: | |
MYSQL_USER: root | |
MYSQL_PASSWORD: root | |
# options: >- | |
# --health-cmd="mysqladmin ping" | |
# --health-interval 10s | |
# --health-timeout 5s | |
# --health-retries 5 | |
ports: | |
- 3306:3306 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
- name: Start database service | |
run: sudo /etc/init.d/mysql start | |
- name: Database setup | |
run: bundle exec rails db:create db:migrate | |
- name: Run tests | |
run: bundle exec rspec --profile |