From 3fa87a9481a1ce92cd664f36d08d6545bd604079 Mon Sep 17 00:00:00 2001 From: Didactic Drunk <1479616+didactic-drunk@users.noreply.github.com> Date: Wed, 11 May 2022 22:47:55 -0700 Subject: [PATCH] Github workflow: cron + remove `shards build` --- .github/workflows/crystal.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/crystal.yml b/.github/workflows/crystal.yml index 5ee8bfc..ac5cb86 100644 --- a/.github/workflows/crystal.yml +++ b/.github/workflows/crystal.yml @@ -3,8 +3,12 @@ name: Crystal CI on: push: branches: [ main ] + paths-ignore: + - "*.md" pull_request: branches: [ main ] + schedule: + - cron: "32 2 * * 2" jobs: build: @@ -20,8 +24,8 @@ jobs: run: shards install - name: Run tests run: crystal spec -Dpreview_mt --order random --error-on-warnings - - name: Run bulid - run: shards build -Dpreview_mt +# - name: Run bulid +# run: shards build -Dpreview_mt - name: Run format run: crystal tool format --check