Skip to content

Bump danger from 9.5.0 to 9.5.1 #455

Bump danger from 9.5.0 to 9.5.1

Bump danger from 9.5.0 to 9.5.1 #455

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
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