Fix model generator pg_search_scope #316
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: Test | |
on: | |
pull_request: | |
push: | |
branches: [ main, release/* ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Ruby and install gems | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
cache: yarn | |
- run: yarn install | |
- name: Run setup | |
run: | | |
bin/setup | |
- name: Run default rake task | |
env: | |
RAILS_ENV: test | |
run: | | |
bundle exec rake |