Skip to content

Fix lib version

Fix lib version #14

Workflow file for this run

name: Crystal CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
container:
image: crystallang/crystal
steps:
- uses: actions/checkout@v1
- name: Install dependencies
run: shards install --ignore-crystal-version
- name: Code formatting
run: crystal tool format --check
- name: Code inspection with ameba
run: bin/ameba src
- name: Run specs
run: crystal spec -v