From c8f28e77f0fb844ac762c66690b1649c2e2924e8 Mon Sep 17 00:00:00 2001 From: Sijawusz Pur Rahnama Date: Fri, 11 Oct 2024 04:57:37 +0200 Subject: [PATCH] Use `make` in CI --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ec6a7565b..03ca07c34 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,11 +36,11 @@ jobs: if: matrix.os == 'macos-latest' run: brew install typos-cli - - name: Run specs - run: crystal spec - - name: Build ameba binary - run: shards build -Dpreview_mt + run: make build + + - name: Run specs + run: make spec - name: Run ameba linter - run: bin/ameba + run: make lint