Move the action call body in to a method with a strict return type to… #888
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: 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: 1.6.2 | |
- 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.6.2 | |
- 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 |