Skip to content

Replace Teeplate with LuckyTemplate (#1861) #899

Replace Teeplate with LuckyTemplate (#1861)

Replace Teeplate with LuckyTemplate (#1861) #899

Workflow file for this run

name: Lucky CI
on:
push:
branches: [main]
pull_request:
branches: "*"
jobs:
check_format:
strategy:
fail-fast: false
runs-on: ubuntu-latest
continue-on-error: false
env:
SKIP_LUCKY_TASK_PRECOMPILATION: "1"
steps:
- uses: actions/checkout@v1
- uses: crystal-lang/install-crystal@v1
with:
crystal: latest
- name: Install shards
run: shards install
- name: Format
run: crystal tool format --check
- name: Lint
run: ./bin/ameba
specs:
strategy:
fail-fast: false
matrix:
shard_file:
- shard.yml
crystal_version:
- 1.9.0
- latest
experimental:
- false
include:
- shard_file: shard.edge.yml
crystal_version: latest
experimental: true
- shard_file: shard.yml
crystal_version: nightly
experimental: true
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
env:
SKIP_LUCKY_TASK_PRECOMPILATION: "1"
steps:
- uses: actions/checkout@v2
- uses: crystal-lang/install-crystal@v1
with:
crystal: ${{matrix.crystal_version}}
- name: Install shards
run: SHARDS_OVERRIDE=${{ matrix.shard_file }} shards install --ignore-crystal-version
- name: Run tests
run: crystal spec