Try ubuntu-latest with built-in mysql #635
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: CI | |
on: push | |
jobs: | |
linting: | |
runs-on: ubuntu-latest | |
name: Linting of Ruby files | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Ruby, Bundler and gems | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: "3.1" | |
bundler-cache: true | |
- run: bundle exec standardrb | |
tests: | |
runs-on: ubuntu-latest | |
name: Test ${{ matrix.gemfile }} with Ruby ${{ matrix.ruby-version }} | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby-version: | |
- "3.1" | |
- "3.2" | |
- "3.3" | |
- "3.4" | |
gemfile: | |
- rails6.1_mysql2 | |
- rails6.1_trilogy | |
- rails7.0_mysql2 | |
- rails7.0_trilogy | |
- rails7.1_mysql2 | |
- rails7.1_trilogy | |
- rails7.2_mysql2 | |
- rails7.2_trilogy | |
include: | |
- {ruby-version: "3.4", gemfile: "rails_main_mysql2"} | |
- {ruby-version: "3.4", gemfile: "rails_main_trilogy"} | |
env: | |
BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile | |
MYSQL_URL: 'mysql://root:[email protected]:3306' | |
steps: | |
- name: Start MySQL service | |
run: sudo systemctl start mysql.service | |
- uses: actions/checkout@v4 | |
- name: Install Ruby, Bundler and gems | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby-version }} | |
bundler-cache: true | |
- name: Check MySQL service health | |
run: mysql -uroot -Proot -e 'show databases' | |
- name: Create user 'john-doe' in MySQL | |
run: mysql --host 127.0.0.1 --port 3306 -uroot -Proot -e "CREATE USER 'john-doe'; GRANT SELECT,INSERT,UPDATE,DELETE,CREATE,DROP,INDEX ON *.* TO 'john-doe'; FLUSH PRIVILEGES;" | |
- run: bundle exec rake test | |
tests_successful: | |
name: Tests passing? | |
needs: tests | |
if: always() | |
runs-on: ubuntu-latest | |
steps: | |
- run: | | |
if ${{ needs.tests.result == 'success' }} | |
then | |
echo "All tests passed" | |
else | |
echo "Some tests failed" | |
false | |
fi |