PR -> gem #3
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: Test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
test: | |
if: ${{ !contains(github.event.head_commit.message, '[ci skip]') }} | |
runs-on: ubuntu-latest | |
env: | |
BUNDLE_JOBS: 4 | |
BUNDLE_RETRY: 3 | |
CI: true | |
RAILS_VERSION: ${{ matrix.rails_version }} | |
DATABASE_URL: postgresql://postgres:postgres@localhost:5432 | |
services: | |
redis: | |
image: redis:7.0-alpine | |
ports: ["6379:6379"] | |
options: --health-cmd="redis-cli ping" --health-interval 1s --health-timeout 3s --health-retries 30 | |
postgres: | |
image: postgres:16 | |
ports: ["5432:5432"] | |
env: | |
POSTGRES_PASSWORD: postgres | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
strategy: | |
fail-fast: false | |
matrix: | |
rails_version: ["~> 7.0.0", "~> 7.0", "~> 8.0.0.beta1"] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.3 | |
bundler-cache: true | |
- name: Create a PostgreSQL database | |
run: | | |
createdb -h localhost -U postgres activerecord_unittest | |
- name: Run tests | |
run: | | |
bundle exec rake test | |
- name: Run tests in isolation | |
run: | | |
bundle exec rake test:isolated |