Cool but simple web-app mobile-compatible to gamify your life and self-improvement
https://lifepex.sceptique.eu/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
226 B
13 lines
226 B
kind: pipeline
|
|
name: default
|
|
|
|
steps:
|
|
- name: test
|
|
image: ruby:3.1
|
|
environment:
|
|
LIFEPEX_DB: "sqlite://test.db"
|
|
LIFEPEX_ENV: "test"
|
|
commands:
|
|
- bundle install --jobs=1 --retry=1
|
|
- rake db:migrate
|
|
- rake test
|
|
|