Skip to content

Update views

Update views #6

Workflow file for this run

name: ci
on: push
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Install Dependencies
uses: ruby/[email protected]
with:
bundler-cache: true
- name: Run linters
run: bundle exec rubocop -c .rubocop.yml
- name: Run tests
run: RAILS_ENV=test bundle exec rspec