Skip to content

Reduce CPU load

Reduce CPU load #61

Workflow file for this run

name: Test
on:
push:
paths:
- '**.cr'
- '.github/workflows/test.yml'
pull_request:
branches: [master]
paths:
- '**.cr'
- '.github/workflows/test.yml'
schedule:
- cron: '0 6 * * 6'
jobs:
checks:
strategy:
fail-fast: false
matrix:
crystal: ['1.3.2']
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
with:
crystal: ${{ matrix.crystal }}
- name: Install shards
run: shards install
- name: Lint code
run: ./bin/ameba
specs:
strategy:
fail-fast: false
matrix:
crystal: ['1.0.0', latest]
experimental: [false]
include:
- crystal: nightly
experimental: true
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
steps:
- name: Download source
uses: actions/checkout@v3
- name: Install Crystal
uses: crystal-lang/install-crystal@v1
with:
crystal: ${{ matrix.crystal }}
- name: Cache shards
uses: actions/cache@v3
with:
path: ~/.cache/shards
key: ${{ runner.os }}-shards-${{ hashFiles('shard.yml') }}
restore-keys: ${{ runner.os }}-shards-
- name: Install shards
run: shards update
- name: Install Redis
run: sudo apt -y install redis
- name: Start Redis
run: sudo systemctl start redis
- name: Run tests
env:
REDIS_URL: redis://localhost:6379/0
run: crystal spec --error-on-warnings -Dpreview_mt