2
0
mirror of https://github.com/offen/website.git synced 2024-10-18 20:20:24 +02:00

implement in memory database

This commit is contained in:
Frederik Ring 2019-04-11 20:19:57 +02:00
parent e29344a64c
commit 63df99ff0b

View File

@ -9,14 +9,14 @@ jobs:
- checkout: - checkout:
path: ~/offen path: ~/offen
- restore_cache: - restore_cache:
key: v1-dependencies-{{ checksum "go.mod" }} key: offen-server-{{ checksum "go.mod" }}
- run: - run:
name: Download modules name: Download modules
command: go mod download command: go mod download
- save_cache: - save_cache:
paths: paths:
- /go/pkg/mod - /go/pkg/mod
key: v1-dependencies-{{ checksum "go.mod" }} key: offen-server-{{ checksum "go.mod" }}
- run: - run:
name: Run tests name: Run tests
command: make test command: make test