Skip to content

UPGRADE SUPPLEJACK COMMON GEM TO LATEST RUBY: As Dan I want the supplejack common gem upgraded to the latest ruby so that it is secure #87

UPGRADE SUPPLEJACK COMMON GEM TO LATEST RUBY: As Dan I want the supplejack common gem upgraded to the latest ruby so that it is secure

UPGRADE SUPPLEJACK COMMON GEM TO LATEST RUBY: As Dan I want the supplejack common gem upgraded to the latest ruby so that it is secure #87

Workflow file for this run

name: Tests
on: pull_request
jobs:
rubocop:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7.2
bundler-cache: true
- name: Rubocop
run: |
bundle exec rubocop
rspec:
runs-on: ubuntu-latest
services:
redis:
image: redis:alpine
ports: ["6379:6379"]
options: --entrypoint redis-server
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7.2
bundler-cache: true
- name: Run RSpec unit tests
run: |
bundle exec rspec spec --fail-fast --format=progress
bundle-audit:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7.2
bundler-cache: true