merge main

This commit is contained in:
Jorens Shtekels 2024-03-10 19:52:33 +02:00
commit b5bebbdd32
2 changed files with 27 additions and 0 deletions

25
.github/workflows/test.yml vendored Normal file
View File

@ -0,0 +1,25 @@
name: Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup CMake
uses: jwlawson/actions-setup-cmake@v1.14
- name: Setup Ninja
uses: seanmiddleditch/gha-setup-ninja@master
- name: Configure and build
run: |
cmake -G Ninja -B build
cd build
ninja
- name: Run tests
run: ./build/runtests

View File

@ -1,5 +1,7 @@
# Overview # Overview
![Tests](https://github.com/jorenchik/testing-spring-2024/actions/workflows/tests.yml/badge.svg)
## Project ## Project
This is a simple C++ project that includes the function for our colleagues to This is a simple C++ project that includes the function for our colleagues to