diff --git a/.github/workflows/install.yml b/.github/workflows/install.yml index 1c76344..10ef035 100644 --- a/.github/workflows/install.yml +++ b/.github/workflows/install.yml @@ -23,7 +23,7 @@ jobs: run: cmake -Htest -Bbuild -DTEST_INSTALLED_VERSION=1 - name: build - run: cmake --build build --config Debug + run: cmake --build build --config Debug -j4 - name: test run: | diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index b15b0db..2a25d07 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -17,7 +17,7 @@ jobs: run: cmake -Htest -Bbuild - name: build - run: cmake --build build --config Debug + run: cmake --build build --config Debug -j4 - name: test run: | diff --git a/.github/workflows/standalone.yml b/.github/workflows/standalone.yml index 7053659..5e0c02c 100644 --- a/.github/workflows/standalone.yml +++ b/.github/workflows/standalone.yml @@ -14,7 +14,7 @@ jobs: run: cmake -Hstandalone -Bbuild - name: build - run: cmake --build build + run: cmake --build build -j4 - name: run run: ./build/Greeter diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index a63a1d0..8b64f5e 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -18,7 +18,7 @@ jobs: run: cmake -Htest -Bbuild -DENABLE_TEST_COVERAGE=1 - name: build - run: cmake --build build --config Debug + run: cmake --build build --config Debug -j4 - name: test run: | diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 3b351af..a7011b4 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -17,7 +17,7 @@ jobs: run: cmake -Htest -Bbuild - name: build - run: cmake --build build --config Debug + run: cmake --build build --config Debug -j4 - name: test run: | diff --git a/README.md b/README.md index 09ef3bf..1a52889 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ [![Actions Status](https://github.com/TheLartians/ModernCPPStarter/workflows/Install/badge.svg)](https://github.com/TheLartians/ModernCPPStarter/actions) [![codecov](https://codecov.io/gh/TheLartians/ModernCPPStarter/branch/master/graph/badge.svg)](https://codecov.io/gh/TheLartians/ModernCPPStarter) -# ModernCPPStarter +# ModernCppStarter A template for starting modern C++ libraries and projects. Setting up a new C++ project usually requires a significant amount of preparation and boilerplate code.