From b0a53bb6a2a08c35c90ff68691bd83cf04e968f0 Mon Sep 17 00:00:00 2001 From: "Glenn Y. Rolland" Date: Tue, 3 Mar 2020 19:16:39 +0100 Subject: [PATCH] Create crystal.yml --- .github/workflows/crystal.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/crystal.yml diff --git a/.github/workflows/crystal.yml b/.github/workflows/crystal.yml new file mode 100644 index 0000000..609ea09 --- /dev/null +++ b/.github/workflows/crystal.yml @@ -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