This repository has been archived by the owner on Aug 21, 2024. It is now read-only.
Refractor CI, Add Rails 7.1 to CI #69
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: Tests | |
on: | |
push: | |
branches: ['master'] | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
env: | |
RAILS_ENV: test | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
### TEST RUBY VERSIONS | |
- ruby: "2.5" | |
- ruby: "2.6" | |
- ruby: "2.7" | |
- ruby: "3.0" | |
- ruby: "3.1" | |
- ruby: "3.2" | |
### TEST RAILS VERSIONS | |
- ruby: "2.6" | |
env: | |
RAILS_VERSION: "5.1" | |
- ruby: "2.6" | |
env: | |
RAILS_VERSION: "5.2" | |
- ruby: "2.6" | |
env: | |
RAILS_VERSION: "6.0" | |
- ruby: "2.6" | |
env: | |
RAILS_VERSION: "6.1" | |
- ruby: "3.2" | |
env: | |
RAILS_VERSION: "7.0" | |
- ruby: "3.2" | |
env: | |
RAILS_VERSION: "7.1" | |
### TEST NON-DEFAULT DATABASES | |
- ruby: "3.2" | |
db_gem: "mysql2" | |
- ruby: "3.2" | |
db_gem: "pg" | |
services: | |
mysql: | |
image: ${{ (matrix.db_gem == 'mysql2' && 'mysql') || '' }} # conditional service | |
env: | |
MYSQL_ROOT_PASSWORD: password | |
MYSQL_DATABASE: test | |
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 | |
ports: ['3306:3306'] | |
postgres: | |
image: ${{ (matrix.db_gem == 'pg' && 'postgres') || '' }} # conditional service | |
env: | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: password | |
POSTGRES_DB: test | |
ports: ['5432:5432'] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set env DATABASE_URL | |
run: | | |
if [[ "${{ matrix.db_gem }}" == 'mysql2' ]]; then | |
echo "DATABASE_URL=mysql2://root:password@127.0.0.1:3306/test" >> "$GITHUB_ENV" | |
elif [[ "${{ matrix.db_gem }}" == 'pg' ]]; then | |
echo "DATABASE_URL=postgres://postgres:password@localhost:5432/test" >> "$GITHUB_ENV" | |
fi | |
- name: Set env DB_GEM | |
if: ${{ matrix.db_gem }} | |
run: | | |
echo "DB_GEM=${{ matrix.db_gem }}" >> "$GITHUB_ENV" | |
- name: Install ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: "${{ matrix.ruby }}" | |
bundler-cache: false ### not compatible with ENV-style Gemfile | |
- name: Run test | |
run: | | |
bundle install | |
bundle exec rake test |