Skip to content
Merged

Dev #62

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,30 @@ jobs:
test:
runs-on: ubuntu-latest

services:
postgres:
image: postgres:15
ports:
-5432:5432
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: query64_test

steps:
- uses: actions/checkout@v3


- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3'
bundler-cache: true

- name: Install test depedencies and run tests
run: |
cd spec/dummy
bundle install
rails db:prepare
rails test

build:
Expand Down