Create crystal.yml

This commit is contained in:
Glenn Y. Rolland 2020-03-03 19:16:39 +01:00 committed by GitHub
parent c5f0aeea22
commit b0a53bb6a2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

22
.github/workflows/crystal.yml vendored Normal file
View file

@ -0,0 +1,22 @@
---
name: Crystal CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
container:
image: crystallang/crystal
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: shards install
- name: Build
run: make test
- name: Tests
run: make test
- name: install
run: make install