GitHub Actions - Applied same changes throughout the script

This commit is contained in:
Itay Grudev 2020-01-03 17:13:35 +00:00 committed by GitHub
parent b25e62409b
commit bb24abdf1d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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/