From cae4884a08b8354c85ee64a91e22f07a29ce62fd Mon Sep 17 00:00:00 2001 From: Alex Kotov Date: Sun, 23 Jan 2022 23:26:45 +0500 Subject: [PATCH] Fix CI --- .github/workflows/test.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1551c7b..a62e7f4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -37,17 +37,17 @@ jobs: - name: install run: sudo make install - - name: Ruby: bundle + - name: 'Ruby: bundle' working-directory: pkgs/ruby - run: Ruby: bundle install - - name: rake compile + run: bundle install + - name: 'Ruby: rake compile' working-directory: pkgs/ruby - run: Ruby: rake compile - - name: test & lint + run: rake compile + - name: 'Ruby: test & lint' working-directory: pkgs/ruby - run: Ruby: rake + run: rake - - name: Rust: test + - name: 'Rust: test' working-directory: pkgs/rust run: cargo test