Skip to content

chore(deps): bump actionpack from 7.0.8.1 to 7.1.3.4 #257

chore(deps): bump actionpack from 7.0.8.1 to 7.1.3.4

chore(deps): bump actionpack from 7.0.8.1 to 7.1.3.4 #257

Workflow file for this run

name: Ruby
on: [push,pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1.2
- name: Run Database
run: docker run --name=db --network=host -e POSTGRES_HOST_AUTH_METHOD=trust -d postgres
- name: Run tests
run: |
gem install bundler -v 2.3.11
bundle install
rake db:create
rake db:schema:load
bundle exec rake spec