Skip to content

Merge pull request #130 from simplybusiness/deploy-statuses-not-turni… #589

Merge pull request #130 from simplybusiness/deploy-statuses-not-turni…

Merge pull request #130 from simplybusiness/deploy-statuses-not-turni… #589

Workflow file for this run

name: Ruby CI
on:
push:
permissions:
contents: read
env:
CI: true
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./
strategy:
matrix:
ruby-version: [3.1.2]
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
- name: Install dependencies
run: bundle install
- name: rubocop
run: bundle exec rubocop
- name: Run all tests
run: bundle exec rspec
shell: bash