Bump rubocop-rails from 2.9.1 to 2.23.1 #2133
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 | |
env: | |
GITHUB_OAUTH_TOKEN: abc123 | |
GITHUB_APP_ID: abc123 | |
GITHUB_APP_SECRET: abc123 | |
GITHUB_REPO: openpolitics/manifesto | |
SITE_URL: https://groupthink.example.com | |
EMAIL_DOMAIN: example.com | |
BLOCK_WEIGHT: -1000 | |
YES_WEIGHT: 1 | |
NO_WEIGHT: -1 | |
MIN_AGE: 7 | |
MAX_AGE: 90 | |
PASS_THRESHOLD: 2 | |
BLOCK_THRESHOLD: -1 | |
PROJECT_URL: https://openpolitics.org.uk/manifesto | |
PROJECT_NAME: The OpenPolitics Manifesto | |
SMTP_USERNAME: foo | |
SMTP_PASSWORD: bar | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install sqlite3 | |
run: | | |
sudo apt update | |
sudo apt install libsqlite3-dev | |
- uses: eregon/use-ruby-action@master | |
with: | |
ruby-version: "2.7" | |
- uses: actions/checkout@v1 | |
- name: Install dependencies | |
run: | | |
gem install bundler | |
bundle install --jobs 4 --retry 3 --without=production | |
- name: Set up the test database | |
run: | | |
RAILS_ENV=test bundle exec rake db:setup | |
- name: Run the tests | |
run: | | |
bundle exec rake | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install sqlite3 | |
run: | | |
sudo apt update | |
sudo apt install libsqlite3-dev | |
- uses: eregon/use-ruby-action@master | |
with: | |
ruby-version: "2.7" | |
- uses: actions/checkout@v1 | |
- name: Install dependencies | |
run: | | |
gem install bundler | |
bundle install --jobs 4 --retry 3 --without=production | |
- name: Run the linter | |
run: | | |
bundle exec rubocop |