From 788b38bbc04720a4f018aa954192e9163c93865f Mon Sep 17 00:00:00 2001 From: Loic Nageleisen Date: Mon, 6 May 2024 16:53:19 +0200 Subject: [PATCH] Add type check in CI, ignoring the result --- .github/workflows/check.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 1697f09..397cc38 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -19,3 +19,6 @@ jobs: run: bundle exec rake standard - name: Lint with Rubocop run: bundle exec rake rubocop + - name: Check types + # TODO: swallowing result until types pass + run: bundle exec rake steep:check || true