From 34f261b6d1d80737f3484a2fd242f5cb3d563ddb Mon Sep 17 00:00:00 2001 From: "Glenn Y. Rolland" Date: Tue, 3 Mar 2020 19:21:18 +0100 Subject: [PATCH] Fix CI/CD pipeline --- .github/workflows/crystal.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/crystal.yml b/.github/workflows/crystal.yml index 609ea09..c5958e1 100644 --- a/.github/workflows/crystal.yml +++ b/.github/workflows/crystal.yml @@ -11,12 +11,12 @@ jobs: 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 + - uses: actions/checkout@v2 + - name: Install dependencies + run: shards install + - name: Build + run: make build + - name: Tests + run: make test + - name: install + run: make install