Skip to content

Add symmetric document encryption #188

Add symmetric document encryption

Add symmetric document encryption #188

Workflow file for this run

name: Ruby
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Set up Ruby
uses: ruby/[email protected]
with:
ruby-version: 3.2
bundler-cache: true
- name: Install dependencies
run: |
gem install rails
bundle install
- name: Check Ruby Syntax in .rb files
run: find ./app/ | grep ".*\.rb$" | xargs -L 1 ruby -c
- name: Setup database
run: rails db:migrate RAILS_ENV=test
- name: Run tests
run: bundle exec rake