From d8d1bf7d3d3c4b53e2bdf58f1881573312b22c69 Mon Sep 17 00:00:00 2001 From: Volodymyr Shymanskyy Date: Thu, 12 Dec 2019 23:39:01 +0200 Subject: [PATCH] Update ccpp.yml --- .github/workflows/ccpp.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml index e3f7098..b245a4f 100644 --- a/.github/workflows/ccpp.yml +++ b/.github/workflows/ccpp.yml @@ -13,8 +13,14 @@ jobs: steps: - uses: actions/checkout@v1 - name: configure - run: mkdir build && cd build && cmake .. + run: | + mkdir build + cd build + cmake .. - name: make - run: cmake --build build + run: | + cmake --build build - name: test - run: cd test && ./run-spec-test.py + run: | + cd test + ./run-spec-test.py