Merge branch 'gh-actions'

This commit is contained in:
Kristofers Solo 2024-03-10 20:21:09 +02:00
commit 93572b0d70

View File

@ -1,6 +1,6 @@
# Overview # Overview
![Tests](https://github.com/jorenchik/testing-spring-2024/actions/workflows/tests.yml/badge.svg) [![Tests](https://github.com/jorenchik/testing-spring-2024/actions/workflows/test.yml/badge.svg)](https://github.com/jorenchik/testing-spring-2024/actions/workflows/test.yml)
## Project ## Project
@ -23,7 +23,7 @@ Compilation on Linux requires cmake and CXX compiler (e.g., g++).
### ninja ### ninja
```bash ```bash
cmake -Gninja -Bbuild cmake -G ninja -B build
cd build cd build
ninja ninja
./main ./main
@ -32,7 +32,7 @@ ninja
### Make ### Make
```bash ```bash
cmake -Bbuild cmake -B build
cd build cd build
make make
./main ./main