Skip to content

Bump activesupport from 7.0.4.3 to 7.0.6 (#346) #261

Bump activesupport from 7.0.4.3 to 7.0.6 (#346)

Bump activesupport from 7.0.4.3 to 7.0.6 (#346) #261

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
services:
redis:
image: redis:alpine
ports: ["6379:6379"]
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '2.7'
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Lint with RuboCop
run: bundle exec rubocop --parallel
- name: Run Danger
env:
DANGER_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: bundle exec danger
- name: Run tests
run: bundle exec rake spec