From bb24abdf1df75528497fb013bbb720223fbd5e02 Mon Sep 17 00:00:00 2001 From: Itay Grudev Date: Fri, 3 Jan 2020 17:13:35 +0000 Subject: GitHub Actions - Applied same changes throughout the script --- .github/workflows/build-cmake.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-cmake.yml b/.github/workflows/build-cmake.yml index 9df0211..8f47d10 100644 --- a/.github/workflows/build-cmake.yml +++ b/.github/workflows/build-cmake.yml @@ -27,13 +27,13 @@ jobs: run: cmake --build . - name: Build example - basic (cmake) - run: cmake . && make + run: cmake . && cmake --build . working-directory: examples/basic/ - name: Build example - calculator (cmake) - run: cmake . && make + run: cmake . && cmake --build . working-directory: examples/calculator/ - name: Build example - sending_arguments (cmake) - run: cmake . && make + run: cmake . && cmake --build . working-directory: examples/sending_arguments/ -- cgit v1.2.1