Skip to content

Running CI for Crystal 1.14 compatibility #141

Running CI for Crystal 1.14 compatibility

Running CI for Crystal 1.14 compatibility #141

Workflow file for this run

name: Cable-CR CI
on:
push:
branches: [master]
pull_request:
branches: "*"
jobs:
specs:
env:
CABLE_BACKEND_URL: redis://redis:6379
strategy:
fail-fast: false
matrix:
shard_file:
- shard.yml
crystal_version:
- 1.10.0
- latest
experimental:
- false
include:
- crystal_version: nightly
experimental: true
runs-on: ubuntu-latest
container: crystallang/crystal:${{ matrix.crystal_version }}-alpine
continue-on-error: ${{ matrix.experimental }}
services:
redis:
image: redis
ports:
- 6379:6379
# Set health checks to wait until redis has started
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v4
- name: Cache Crystal
uses: actions/cache@v4
with:
path: ~/.cache/crystal
key: ${{ runner.os }}-crystal
- name: Install shards
run: shards install
- name: Format
run: crystal tool format --check
- name: Lint
run: ./bin/ameba
- name: Run tests
run: crystal spec