From b41bed8421c8dfec2ee342a36763fb6f17d63846 Mon Sep 17 00:00:00 2001 From: "Glenn Y. Rolland" Date: Fri, 1 Jan 2021 20:13:43 +0100 Subject: [PATCH] Create crystal.yml --- .github/workflows/crystal.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 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..d96e2f2 --- /dev/null +++ b/.github/workflows/crystal.yml @@ -0,0 +1,23 @@ +name: Crystal CI + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + runs-on: ubuntu-latest + + container: + image: crystallang/crystal + + steps: + - uses: actions/checkout@v2 + - name: Install dependencies + run: shards install + - name: Run build + run: make build + #- name: Run tests + # run: crystal spec