move LavinMQ to a service for CI #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |