From 36d9b8aa74e7dd4662c4c91833342f66c1bbfee6 Mon Sep 17 00:00:00 2001 From: yui-knk Date: Fri, 3 Nov 2023 11:51:52 +0900 Subject: [PATCH] Check `rake build` on CI Sometimes `rake build` is broken. For example in v1.7.2, mismatch of "cparse-jruby.jar" path between racc.gemspec and Rakefile makes `rake build` failed. Add a check on CI to detect such problem in advance. --- .github/workflows/test.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 81033532..2f6496e0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -41,3 +41,4 @@ jobs: ruby-version: ${{matrix.ruby}} bundler-cache: true - run: bundle exec rake compile test + - run: bundle exec rake build