Skip to content

Update docs.yml

Update docs.yml #38

Workflow file for this run

name: CI
on:
push:
pull_request:
branches: [master]
schedule:
- cron: '0 6 * * 6'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2
- name: Install Crystal 🔮
uses: crystal-lang/install-crystal@v1
- name: Install shards ✨
run: shards update --ignore-crystal-version
- name: Run tests
run: crystal spec --order=random
- name: Check formatting
run: crystal tool format --check