1
0
mirror of https://github.com/itay-grudev/SingleApplication.git synced 2025-03-18 03:49:51 +08:00

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/