Skip to content

Adding changelog and upgrade notes for v1.2.0 (#1869) #911

Adding changelog and upgrade notes for v1.2.0 (#1869)

Adding changelog and upgrade notes for v1.2.0 (#1869) #911

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@v4
- 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.10.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@v4
- 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