CI #1960
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: CI | |
on: | |
pull_request: | |
branches: | |
- 'master' | |
schedule: | |
- cron: '15 1 * * *' # Nightly at 01:15 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
check_spelling: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Check Spelling | |
uses: crate-ci/[email protected] | |
check_format: | |
runs-on: ubuntu-latest | |
container: | |
image: crystallang/crystal:latest-alpine | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Check Format | |
run: crystal tool format --check | |
coding_standards: | |
runs-on: ubuntu-latest | |
container: | |
image: crystallang/crystal:latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Dependencies | |
run: shards install | |
env: | |
SHARDS_OVERRIDE: shard.dev.yml | |
- name: Ameba | |
run: ./bin/ameba | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-latest | |
- macos-latest | |
# - windows-latest | |
crystal: | |
- latest | |
- nightly | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
if: github.event_name != 'pull_request' | |
- uses: actions/checkout@v3 | |
if: github.event_name == 'pull_request' | |
with: | |
fetch-depth: 0 | |
- name: Install Crystal | |
uses: crystal-lang/install-crystal@v1 | |
with: | |
crystal: ${{ matrix.crystal }} | |
- name: Install Dependencies | |
run: shards install --skip-postinstall --skip-executables | |
env: | |
SHARDS_OVERRIDE: shard.dev.yml | |
- name: Specs | |
run: ./scripts/test.sh |