Compare commits

..

No commits in common. "5c6f1a4169146d6b05213a38fdbf5382cf08dbf2" and "8b6f628d0c6b9e72260ce1d9c0437124c2d7b6d8" have entirely different histories.

View File

@ -1,34 +0,0 @@
name: Build and Run C++ Unit Tests
on:
push:
branches:
- CI
pull_request:
branches:
- CI
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install Dependencies
run: |
apt-get update
apt-get install -y cmake # Install required packages
- name: Build the Project
run: |
mkdir build
cd build
cmake ..
make # Build the LinearAlgebra library and tests
- name: Run Unit Tests
run: |
cd build
./LinearAlgebraTest # Execute the test binary