From f689b3dda8677249cf6cef3b06490c40a1294663 Mon Sep 17 00:00:00 2001 From: Kristofers Solo Date: Sun, 10 Mar 2024 19:41:53 +0200 Subject: [PATCH] docs(actions): add "Tests" badge --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c3a10e5..d116405 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # Overview +![Tests](https://github.com/jorenchik/testing-spring-2024/actions/workflows/tests.yml/badge.svg) + ## Project This is a simple C++ project that includes the function for our colleagues to @@ -21,7 +23,7 @@ Compilation on Linux requires cmake and CXX compiler (e.g., g++). ### ninja ```bash -cmake -Gninja -Bbuild +cmake -G ninja -B build cd build ninja ./main @@ -30,7 +32,7 @@ ninja ### Make ```bash -cmake -Bbuild +cmake -B build cd build make ./main