chore(deps): update dependency rubocop-rails to v2.21.0 #1781
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, pull_request] | |
jobs: | |
rspec: | |
name: rspec | |
runs-on: ubuntu-22.04 | |
services: | |
postgres: | |
image: timescale/timescaledb:2.11.2-pg15 | |
env: | |
POSTGRES_PASSWORD: secret | |
ports: | |
- 5432:5432 | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
env: | |
TZ: Etc/UTC | |
DATABASE_URL: postgresql://postgres:secret@localhost:5432 | |
steps: | |
- uses: actions/checkout@master | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '3.2' | |
bundler-cache: true | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
cache: yarn | |
- run: corepack enable | |
- run: yarn install --immutable | |
- run: yarn build --mode production | |
- run: bundle exec rake db:create:all db:setup | |
- run: bundle exec rspec spec --format doc | |
rubocop: | |
name: rubocop | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@master | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '3.2' | |
bundler-cache: true | |
- run: bundle exec rubocop --color --parallel --fail-level E |