[Snyk] Security upgrade rubocop from 1.50.1 to 1.50.2 #1097
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
env: | |
RUBY_VERSION: 3.1.0 | |
DATABASE_URL: postgres://postgres:postgres@localhost:5432/postgres | |
name: CI | |
on: | |
push: | |
branches-ignore: | |
- 'develop' | |
- 'master' | |
- '**stable' | |
pull_request: | |
branches: "*" | |
jobs: | |
test: | |
name: Rubocop + Rails Test | |
runs-on: ubuntu-22.04 | |
services: | |
postgres: | |
image: postgres:13 | |
env: | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: password | |
ports: | |
- 5432:5432 | |
# Health checks to wait until postgres is ready | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install Ruby ${{ env.RUBY_VERSION }} | |
uses: ruby/[email protected] | |
with: | |
ruby-version: ${{ env.RUBY_VERSION }} | |
- name: Bundle cache | |
uses: actions/cache@v3 | |
with: | |
path: vendor/bundle | |
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }} | |
restore-keys: | | |
${{ runner.os }}-gems- | |
- name: Bundle install | |
run: | | |
bundle config path vendor/bundle | |
bundle install --jobs 4 --retry 3 | |
- name: Run Rubocop | |
run: bundle exec rubocop | |
- name: Run Rails Test | |
env: | |
DATABASE_URL: postgres://postgres:password@localhost:5432/scalelite_test | |
run: | | |
bundler exec rails test:db | |
- name: Run RSpec | |
env: | |
DATABASE_URL: postgres://postgres:password@localhost:5432/scalelite_test | |
run: | | |
bundle exec rspec |