Rely on search_path (instead of "public") when deciding to fully-qualify view name #318
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: | |
push: | |
branches: main | |
pull_request: | |
branches: "*" | |
jobs: | |
build: | |
name: Ruby ${{ matrix.ruby }}, Rails ${{ matrix.rails }} | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby: ["2.7", "3.0", "3.1", "3.2"] | |
rails: ["6.1", "7.0"] | |
continue-on-error: [false] | |
exclude: | |
- ruby: "3.2" | |
rails: "6.1" | |
runs-on: ubuntu-latest | |
services: | |
postgres: | |
image: postgres | |
env: | |
POSTGRES_USER: "postgres" | |
POSTGRES_PASSWORD: "postgres" | |
ports: | |
- 5432:5432 | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
env: | |
RAILS_VERSION: ${{ matrix.rails }} | |
POSTGRES_USER: "postgres" | |
POSTGRES_PASSWORD: "postgres" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install Ruby ${{ matrix.ruby }} | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
- name: Install dependent libraries | |
run: sudo apt-get install libpq-dev | |
- name: Generate lockfile | |
run: bundle lock | |
- name: Cache dependencies | |
uses: actions/cache@v3 | |
with: | |
path: vendor/bundle | |
key: bundle-${{ hashFiles('Gemfile.lock') }} | |
- name: Set up Scenic | |
run: bin/setup | |
- name: Run fast tests | |
run: bundle exec rake spec | |
continue-on-error: ${{ matrix.continue-on-error }} | |
- name: Run acceptance tests | |
run: bundle exec rake spec:acceptance | |
continue-on-error: ${{ matrix.continue-on-error }} |