Skip to content

Create CODE_OF_CONDUCT.md #169

Create CODE_OF_CONDUCT.md

Create CODE_OF_CONDUCT.md #169

Workflow file for this run

name: Crystal CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
container:
image: crystallang/crystal
services:
redis:
image: redislabs/redistimeseries
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: shards install
- name: Run tests
run: crystal spec
env:
REDIS_URL: redis:6379
REDIS_HOST: redis
REDIS_PORT: 6379