Skip to content

Fixes Crystal 1.13 regression issue #65

Fixes Crystal 1.13 regression issue

Fixes Crystal 1.13 regression issue #65

Workflow file for this run

name: Habitat CI
on:
push:
branches: [main]
pull_request:
branches: "*"
jobs:
check_format:
strategy:
fail-fast: false
runs-on: ubuntu-latest
continue-on-error: false
steps:
- name: Download source
uses: actions/checkout@v3
- name: Install Crystal
uses: crystal-lang/install-crystal@v1
- name: Install shards
run: shards install
- name: Format
run: crystal tool format --check
- name: Lint
run: ./bin/ameba
specs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
crystal_version: [latest]
experimental: false

Check failure on line 32 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / Habitat CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 32, Col: 23): Unexpected value 'false'
include:
- os: ubuntu-latest
crystal_version: 1.4.0
experimental: false
- os: ubuntu-latest
crystal_version: nightly
experimental: true
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
steps:
- uses: actions/checkout@v3
- uses: crystal-lang/install-crystal@v1
with:
crystal: ${{ matrix.crystal_version }}
- name: Install dependencies
run: shards install --skip-postinstall --skip-executables
- name: Run tests
run: crystal spec