Skip to content

Add ability to check #on? on VirtualTimes; add tests #4

Add ability to check #on? on VirtualTimes; add tests

Add ability to check #on? on VirtualTimes; add tests #4

Workflow file for this run

name: Linux CI
on:
push:
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Download source
uses: actions/checkout@v2
- name: Install Crystal
uses: oprypin/install-crystal@v1
- name: Cache shards
uses: actions/cache@v2
with:
path: ~/.cache/shards
key: ${{ runner.os }}-shards-${{ hashFiles('shard.yml') }}
restore-keys: ${{ runner.os }}-shards-
- name: Install shards
run: shards update --ignore-crystal-version
- name: Run tests
run: crystal spec --order=random --error-on-warnings
- name: Check formatting
run: crystal tool format --check