Skip to content

Require Rails parts in test itself #97

Require Rails parts in test itself

Require Rails parts in test itself #97

Workflow file for this run

name: CI
on:
- push
env:
BUNDLE_PATH: vendor/bundle
jobs:
test:
name: Tests and Lint
runs-on: ubuntu-22.04
strategy:
matrix:
ruby:
- '2.6'
- '3.2'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: "Tests"
run: bundle exec rspec --backtrace --fail-fast
- name: "Lint"
run: bundle exec rake standard