From 2252cdc632d3d742ecc55b7eb845f55ce3fa952c Mon Sep 17 00:00:00 2001 From: "Glenn Y. Rolland" Date: Sat, 2 Jan 2021 22:53:00 +0100 Subject: [PATCH] Add CI/CD workflow --- .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..a1e9776 --- /dev/null +++ b/.github/workflows/crystal.yml @@ -0,0 +1,23 @@ +name: Build + +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