Skip to content

CI

CI #183

Workflow file for this run

name: CI
on:
push:
pull_request:
schedule:
- cron: '0 0 1 * *'
jobs:
linux:
runs-on: ubuntu-latest
container: crystallang/crystal:latest-alpine
steps:
- name: Download source code
uses: actions/checkout@v3
- name: Format
run: "crystal tool format --check"
- name: Run tests
run: "crystal spec --warnings none"