FIX: Falling back to primary PG server not reliable on Rails 7.1 #307
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: CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '3.2' | |
bundler-cache: true | |
- name: Rubocop | |
run: bundle exec rubocop | |
- name: syntax_tree | |
if: ${{ !cancelled() }} | |
run: | | |
set -E | |
bundle exec stree check Gemfile rails_failover.gemspec $(git ls-files '*.rb') | |
redis: | |
name: 'Redis (Ruby ${{ matrix.ruby }})' | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby: ['3.4', '3.3', '3.2', '3.1'] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
- name: Setup redis | |
run: sudo apt-get install redis-server | |
- name: Redis specs | |
run: bin/rspec redis | |
active_record: | |
runs-on: ubuntu-latest | |
name: 'ActiveRecord ~>${{ matrix.rails }} (Ruby ${{ matrix.ruby }})' | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby: ['3.4', '3.3', '3.2', '3.1'] | |
rails: ['7.1.0', '7.0.0'] | |
include: | |
- ruby: '3.2' | |
rails: '6.1.0' | |
exclude: | |
- ruby: '3.4' | |
rails: '7.0.0' | |
- ruby: '3.3' | |
rails: '7.0.0' | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
- name: Setup gems | |
run: bundle install | |
- name: Setup postgres | |
run: | | |
make setup_pg | |
make start_pg | |
- name: ActiveRecord specs | |
env: | |
RAILS_VERSION: ${{ matrix.rails }} | |
run: bin/rspec active_record | |
publish: | |
if: github.event_name == 'push' && github.ref == 'refs/heads/main' | |
needs: [lint, redis, active_record] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Release Gem | |
uses: discourse/publish-rubygems-action@v3 | |
env: | |
RUBYGEMS_API_KEY: ${{ secrets.RUBYGEMS_API_KEY }} | |
GIT_EMAIL: team@discourse.org | |
GIT_NAME: discoursebot |