Skip to content

move LavinMQ to a service for CI #2

move LavinMQ to a service for CI

move LavinMQ to a service for CI #2

Workflow file for this run

name: Cable.cr AMQPBackend CI
on:
push:
branches: [main]
pull_request:
branches: "*"
jobs:
specs:
env:
CABLE_BACKEND_URL: amqp://guest:guest@localhost
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
services:
lavinmq:
image: cloudamqp/lavinmq
ports:
- 5672:5672
- 15672:15672
container: crystallang/crystal:${{ matrix.crystal_version }}
continue-on-error: ${{ matrix.experimental }}
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